ultimatepp/examples/AndroidMath/AndroidManifest.xml
klugier 55a110e92b .examples remove whitespaces in AndroidMath example
git-svn-id: svn://ultimatepp.org/upp/trunk@8768 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-29 10:13:04 +00:00

14 lines
544 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>