/trunk/Examples/android/simple/AndroidManifest.xml
# · XML · 15 lines · 15 code · 0 blank · 0 comment · 0 complexity · c1288bf20491ee1f0c1b1a41b94111ee MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.swig.simple"
- android:versionCode="1"
- android:versionName="1.0">
- <application android:label="@string/app_name" >
- <activity android:name="SwigSimple"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>