I started a new test app, and downloaded a Holo Theme (by name JSTheme) from Android-holo-colors.com And replaced the /res folder contents with the res folder in that downloaded zip file.
But when I replace the line in tiapp.xml
<android xmlns:android="http://schemas.android.com/apk/res/android" />
to this, then the compile is not happening. It shows then: [ERROR] : Failed to package application: [ERROR] Application Installer abnormal process termination. Process exit value was 1
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>14</tool-api-level>
<manifest>
<application android:theme="@style/Theme.JSTheme"/>
<uses-sdk android:targetSdkVersion="14"/>
</manifest>
</android>
And when I restore back the lines above to same
Then the app gets compiled and everything works.
Am I doing something wrong?
And when I restore back the lines above to same
<android xmlns:android="http://schemas.android.com/apk/res/android" />
Then the app gets compiled and everything works.
Am I doing something wrong?