Update theme submodule
[platform/upstream/gstreamer.git] / tutorials / android-tutorial-4 / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="com.gst_sdk_tutorials.tutorial_4"
4       android:versionCode="1"
5       android:versionName="1.0">
6     <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/>
7     <uses-permission android:name="android.permission.INTERNET"/>
8     <uses-feature android:glEsVersion="0x00020000"/>
9     <application android:label="@string/app_name"
10                  android:icon="@drawable/gstreamer_logo_4">
11         <activity android:name=".Tutorial4"
12                   android:label="@string/app_name">
13             <intent-filter>
14                 <action android:name="android.intent.action.MAIN" />
15                 <category android:name="android.intent.category.LAUNCHER" />
16             </intent-filter>
17         </activity>
18     </application>
19 </manifest>