otclient/android/AndroidManifest.xml
2014-12-18 00:31:28 -02:00

27 lines
1.1 KiB
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="otclientmob.tuliohdev.com.otclientmob">
<application android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme"
android:hasCode="false"> <!-- This .apk has no Java code itself, so set hasCode to false. -->
<!-- Our activity is the built-in NativeActivity framework class.
This will take care of integrating with our NDK code. -->
<activity android:name="android.app.NativeActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name"
android:value="native-activity" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>