Reputation: 33
I have developed an android application for remote attendance for my client who has more than 20 employees. For some reason, the client neither wants the application to be published on Google Play Store nor he wants the employees to keep the apk file of the app in their mobile. He calls the employees, gets the apk installed and then gets the apk file deleted from employees' phone. The problem that I am facing is that he regularly asks me to update the app and then gets the whole process of installing and deleting the app done. Can I do something like I upload the apk file on some web link, the employees open that link and the apk gets automatically installed on his/her phone (without getting apk file)? Or can it be done in any other way?
Upvotes: 3
Views: 3797
Reputation: 13836
You need to tell him that if the APK is installed it is on the users phone. Just because he has deleted the file, it doesn't mean it cannot be got from the phone.
As other people have said, if he doesn't want the APK on the phone you have two options:
Upvotes: 0
Reputation: 410
You don't need play store to update the application. You can show a update dialog and download the apk from the web and open the apk. The signature of apps must be same and you need proper permissions (including "allow installation from unknown sources").
Upvotes: 2