Best way to install Android app on 500 tablets?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
5
down vote
favorite
We have 500 tablets that need to go out with our Android app pre-installed. From our experience so far, the only way to install the apps is by creating a new Google account, logging into the play store, and installing the app. The problem with this method is that it's very time consuming, it's creating junk accounts that I'm sure Google doesn't want, and each new account requires a phone number to verify and you can only create a limited number of accounts on a single phone number.
The obvious alternative is to side load the app with the APK file manually, but the downside to this is that we want to be able to update the app later. My understanding is that if we side load the app we can't update the app automatically.
We are already using Ionic Pro which has live deploy which handles most small updates but it can't live deploy any updates that involve updates to the cordova/native plugins.
Since both of these methods have drawbacks, I'm hoping there's another way. I'm curious how educational institutions are able to preload apps on classroom tablets that update without an account logged into the Play Store.
To be clear, and to avoid duplication of other similar questions, what I'm really looking for is to use the Google Play Store for updates, not bypass it, but without having a unique Google account per tablet.
google-play-store
New contributor
add a comment |
up vote
5
down vote
favorite
We have 500 tablets that need to go out with our Android app pre-installed. From our experience so far, the only way to install the apps is by creating a new Google account, logging into the play store, and installing the app. The problem with this method is that it's very time consuming, it's creating junk accounts that I'm sure Google doesn't want, and each new account requires a phone number to verify and you can only create a limited number of accounts on a single phone number.
The obvious alternative is to side load the app with the APK file manually, but the downside to this is that we want to be able to update the app later. My understanding is that if we side load the app we can't update the app automatically.
We are already using Ionic Pro which has live deploy which handles most small updates but it can't live deploy any updates that involve updates to the cordova/native plugins.
Since both of these methods have drawbacks, I'm hoping there's another way. I'm curious how educational institutions are able to preload apps on classroom tablets that update without an account logged into the Play Store.
To be clear, and to avoid duplication of other similar questions, what I'm really looking for is to use the Google Play Store for updates, not bypass it, but without having a unique Google account per tablet.
google-play-store
New contributor
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
We have 500 tablets that need to go out with our Android app pre-installed. From our experience so far, the only way to install the apps is by creating a new Google account, logging into the play store, and installing the app. The problem with this method is that it's very time consuming, it's creating junk accounts that I'm sure Google doesn't want, and each new account requires a phone number to verify and you can only create a limited number of accounts on a single phone number.
The obvious alternative is to side load the app with the APK file manually, but the downside to this is that we want to be able to update the app later. My understanding is that if we side load the app we can't update the app automatically.
We are already using Ionic Pro which has live deploy which handles most small updates but it can't live deploy any updates that involve updates to the cordova/native plugins.
Since both of these methods have drawbacks, I'm hoping there's another way. I'm curious how educational institutions are able to preload apps on classroom tablets that update without an account logged into the Play Store.
To be clear, and to avoid duplication of other similar questions, what I'm really looking for is to use the Google Play Store for updates, not bypass it, but without having a unique Google account per tablet.
google-play-store
New contributor
We have 500 tablets that need to go out with our Android app pre-installed. From our experience so far, the only way to install the apps is by creating a new Google account, logging into the play store, and installing the app. The problem with this method is that it's very time consuming, it's creating junk accounts that I'm sure Google doesn't want, and each new account requires a phone number to verify and you can only create a limited number of accounts on a single phone number.
The obvious alternative is to side load the app with the APK file manually, but the downside to this is that we want to be able to update the app later. My understanding is that if we side load the app we can't update the app automatically.
We are already using Ionic Pro which has live deploy which handles most small updates but it can't live deploy any updates that involve updates to the cordova/native plugins.
Since both of these methods have drawbacks, I'm hoping there's another way. I'm curious how educational institutions are able to preload apps on classroom tablets that update without an account logged into the Play Store.
To be clear, and to avoid duplication of other similar questions, what I'm really looking for is to use the Google Play Store for updates, not bypass it, but without having a unique Google account per tablet.
google-play-store
google-play-store
New contributor
New contributor
edited 3 hours ago
New contributor
asked 8 hours ago
Citizen
1336
1336
New contributor
New contributor
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago
add a comment |
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
6
down vote
accepted
I do not think you need a unique account. I have several devices that all use the same account. That aside...
Sideloaded apps should be able to update from Google Play. I just tested this myself. I installed an older version of Discord on my phone, opened a fresh run of Google Play, and checked for updates. It showed me that there was an update and was able to do it.
Since 2015, Google Play is able to detect the keystore signature of the apps. As long as the one installed and the one on the market are signed the same, then it should update.
You should be able to test it yourself, assuming you have older version of your app that you can fiddle with.
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
I do not think you need a unique account. I have several devices that all use the same account. That aside...
Sideloaded apps should be able to update from Google Play. I just tested this myself. I installed an older version of Discord on my phone, opened a fresh run of Google Play, and checked for updates. It showed me that there was an update and was able to do it.
Since 2015, Google Play is able to detect the keystore signature of the apps. As long as the one installed and the one on the market are signed the same, then it should update.
You should be able to test it yourself, assuming you have older version of your app that you can fiddle with.
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
add a comment |
up vote
6
down vote
accepted
I do not think you need a unique account. I have several devices that all use the same account. That aside...
Sideloaded apps should be able to update from Google Play. I just tested this myself. I installed an older version of Discord on my phone, opened a fresh run of Google Play, and checked for updates. It showed me that there was an update and was able to do it.
Since 2015, Google Play is able to detect the keystore signature of the apps. As long as the one installed and the one on the market are signed the same, then it should update.
You should be able to test it yourself, assuming you have older version of your app that you can fiddle with.
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
add a comment |
up vote
6
down vote
accepted
up vote
6
down vote
accepted
I do not think you need a unique account. I have several devices that all use the same account. That aside...
Sideloaded apps should be able to update from Google Play. I just tested this myself. I installed an older version of Discord on my phone, opened a fresh run of Google Play, and checked for updates. It showed me that there was an update and was able to do it.
Since 2015, Google Play is able to detect the keystore signature of the apps. As long as the one installed and the one on the market are signed the same, then it should update.
You should be able to test it yourself, assuming you have older version of your app that you can fiddle with.
I do not think you need a unique account. I have several devices that all use the same account. That aside...
Sideloaded apps should be able to update from Google Play. I just tested this myself. I installed an older version of Discord on my phone, opened a fresh run of Google Play, and checked for updates. It showed me that there was an update and was able to do it.
Since 2015, Google Play is able to detect the keystore signature of the apps. As long as the one installed and the one on the market are signed the same, then it should update.
You should be able to test it yourself, assuming you have older version of your app that you can fiddle with.
answered 7 hours ago
CodeMonkey
323112
323112
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
add a comment |
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
Thanks! Does the updates done to sideloaded apps work even if you never log into Google Play?
– Citizen
6 hours ago
1
1
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
@Citizen Unfortunately to get the updates on any app not developed by Google, you have to sign in to an account. However, you should be able to use just one dummy account across all devices.
– CodeMonkey
6 hours ago
add a comment |
Citizen is a new contributor. Be nice, and check out our Code of Conduct.
Citizen is a new contributor. Be nice, and check out our Code of Conduct.
Citizen is a new contributor. Be nice, and check out our Code of Conduct.
Citizen is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fandroid.stackexchange.com%2fquestions%2f204384%2fbest-way-to-install-android-app-on-500-tablets%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Not saying you should keep doing what you're doing, but trust me: Google doesn't care at all about these "junk accounts". They will likely never even notice them...
– only_pro
4 hours ago
@only_pro the other issue is that they require phone numbers to verify and you can only create a limited number of accounts on a single phone number.
– Citizen
3 hours ago