user1397575
user1397575

Reputation: 1

Android deployment customization

Is it possible to do custom step during deployment on Android device? For example, I want to check device configuration to find out if my application can run there. Of course, I can do test during run time but check during customization looks like a much better solution

Thank you Yevgeniy

Upvotes: 0

Views: 84

Answers (2)

user1378730
user1378730

Reputation: 930

What you can do is create an application (installer) that will install the application and have the installer run the checks then have it download the application.

Also if its simple stuff like not supporting small screens or old versions of Android the Android Manifest would be something to look into.

Upvotes: 1

FoamyGuy
FoamyGuy

Reputation: 46856

Nope, you have no way to do anything, including check any information about the device before you application is installed and running.

Upvotes: 1

Related Questions