OSDN Git Service

16080d0c936814f8478e97d57f14845405871668
[android-x86/external-koush-Widgets.git] / WidgetsSample / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="com.koushikdutta.widgets.sample"
4     android:versionCode="1"
5     android:versionName="1.0" >
6
7     <uses-sdk
8         android:minSdkVersion="8"
9         android:targetSdkVersion="16" />
10
11     <application
12         android:allowBackup="true"
13         android:icon="@drawable/ic_launcher"
14         android:label="@string/app_name"
15         android:theme="@android:style/Theme.DeviceDefault.Light" >
16         <activity
17             android:name="com.koushikdutta.widgets.sample.MainActivity"
18             android:label="@string/app_name" >
19             <intent-filter>
20                 <action android:name="android.intent.action.MAIN" />
21
22                 <category android:name="android.intent.category.LAUNCHER" />
23             </intent-filter>
24         </activity>
25         
26         <activity 
27             android:name=".MainActivityDark"
28             android:theme="@android:style/Theme.DeviceDefault"
29             />
30     </application>
31
32 </manifest>