Add new activity
[android_projects.git] / GenericDemo / AndroidManifest.xml
blobb4549e35716d5ffd7c346b4b0917f3602237e098
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="com.example.genericdemo"
4       android:versionCode="1"
5       android:versionName="1.0">
6     <application android:icon="@drawable/icon" android:debuggable="true" android:label="@string/app_name">
7         <activity android:name=".genericdemo"
8                   android:label="@string/app_name">
9             <intent-filter>
10                 <action android:name="android.intent.action.MAIN" />
11                 <category android:name="android.intent.category.LAUNCHER" />
12             </intent-filter>
13         </activity>
15     <activity android:name=".gdpreferences.Preferences"></activity>
16 </application>
17     <uses-sdk android:minSdkVersion="7" />
20 </manifest>