How to create Android Applications only for the Enterprise [closed]

强颜欢笑 提交于 2019-11-27 13:12:13

问题


I want to create an Android application that is not released to the Android Market for public consumption but only for private use of my company. Is this possible? If so can you post a link to where you can do this?

Thanks! Joe


回答1:


This is not a problem. Just make the apk (installation file) available on an internal website and set the mime type to application/vnd.android.package-archive. Then people can install the application over the intranet directly from their devices.

Other alternates include:

  1. Installing from the PC using the command line tool adb (comes with the SDK).
  2. Installing from the PC using a 3rd party tool like this.
  3. Installing on the device (from SD card) with a free market place call AppManager by zx128.



回答2:


Definitely possible. Just don't distribute the file outside of the enterprise. You don't have to publish your application to the Android Market unless you want to.




回答3:


This is not an new issue actually many companies make enterpise application not only on mobile but on web and of course Desktop app, there are many issues regarding the developement of enterpise application on Android, like:

  • Create an Update for your application
  • Debugging the application and stacktrace reports
  • Security the data, this is not only for enterprise but there is a lot of paranoid regarding to this you can try the SSL or he VPN approach also trying to encrypt the database but at the end there are some boundaries that you probably will have to learn to live with and expose.

Last Google I/O there as this great presentation called Taking Android to Work, you will see multiple approach and issues regarding the enterprise application and features on Android platform.

You can always try Push link service, or take a simpler approach like it has been mention in Update (Private) android application



来源:https://stackoverflow.com/questions/1884972/how-to-create-android-applications-only-for-the-enterprise

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!