1
0
mirror of https://github.com/xlab/android-go.git synced 2025-12-23 22:11:00 +02:00
Files
android-go/example-x86/android/AndroidManifest.xml
2017-05-01 12:33:58 -07:00

21 lines
814 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.golang.android.example"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="21" />
<application android:label="GolangExample" android:hasCode="false">
<activity android:name="android.app.NativeActivity"
android:label="GolangExample"
android:configChanges="orientation|keyboardHidden">
<meta-data android:name="android.app.lib_name" android:value="example" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>