ultimatepp/examples/AndroidMath/AndroidManifest.xml
klugier 8bca4ca3f1 Added Android builder juicy example
git-svn-id: svn://ultimatepp.org/upp/trunk@8640 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-07 21:52:43 +00:00

14 lines
545 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.upp.AndroidMath">
<application
android:allowBackup="true">
<activity android:name=".AndroidMathActivity"
android:label="AndroidMath">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>