gstreamer/gst-sdk/tutorials/android-tutorial-2/AndroidManifest.xml
Sebastian Dröge 39c4835473 android/tutorial2: De-SDKify everything a bit more
TODO: The application icon
2016-06-03 16:33:29 +03:00

17 lines
763 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.freedesktop.gstreamer.tutorials.tutorial_2"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/>
<application android:label="@string/app_name"
android:icon="@drawable/gst_sdk_icon">
<activity android:name=".Tutorial2"
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>