I have a client application that should be installed on a couple of android emulators.
My server application requires these clients to introduce themselves with their unique ID upon connecting to the server.
So,
Can I compile a single .apk file and when installing it on different emulators(using adb -s xxx install yyy.apk
) give them an id using an argument?
I have something similar to this in mind:
adb -s xxx install yyy.apk -iii id-of-this-client
I value your comments and suggestions.