Add Android versionCode to tiapp.xml?

You must Login before you can answer or comment on any questions.

Is it possible to add the versionCode (required to be incremented for distribution in the android market) in tiapp.xml in any other way besides just pasting the entire contents of the manifest file into tiapp.xml?

I feel a bit uncomfortable doing that in case I make some change to my app or the SDK changes in a way that the manifest changes, but I will forget all that stuff is in there and tear my hair out for hours!

— asked 1 year ago by Jake Jake
0 Comments

1 Answer

You dont have to add the entire manifest just:

<android xmlns:android="http://schemas.android.com/apk/res/android">
        <tool-api-level>8</tool-api-level>
        <manifest
            android:versionCode="130" android:versionName="1.3">
        </manifest>
    </android>

Your Answer

Think you can help? Login to answer this question!