Hi, I am creating my own application. PRE:
- The application will be limited to a limited number of users. (say 20 people).
- The application must be unique for each user, so each apk will only refer to the user.
- Each application must have a different package name.
So, I started thinking about building a script that takes a list of users and creates 20 apks (one for each user) and updates the strings.xml file with the user modification needed for each user.
But I really don't know where to start. Is there a good way or tutorial that I can reference?
Just to be clear, I would like to have a manifest like this:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="$pname"
android:versionCode="1"
android:versionName="1.0">
<application>...</application>
</manifest>
And then replace $ pname using ant.