/[projects]/android/Side9/AndroidManifest.xml
ViewVC logotype

Annotation of /android/Side9/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 790 - (hide annotations) (download) (as text)
Thu Jun 3 09:11:07 2010 UTC (13 years, 11 months ago) by torben
File MIME type: text/xml
File size: 1226 byte(s)
First version with built-in image gallery
1 torben 632 <?xml version="1.0" encoding="utf-8"?>
2     <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="dk.thoerup.side9"
4 torben 788 android:versionName="1.0" android:versionCode="8">
5 torben 632 <application android:icon="@drawable/icon" android:label="@string/app_name">
6     <receiver android:name="Side9WidgetProvider" >
7     <intent-filter>
8     <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
9     </intent-filter>
10     <meta-data android:name="android.appwidget.provider" android:resource="@xml/widgetinfo" />
11     </receiver>
12 torben 771 <activity android:name=".Side9Config">
13     <intent-filter>
14     <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
15     </intent-filter>
16     </activity>
17 torben 790
18     <activity android:name="PictureOverview"/>
19    
20 torben 632 </application>
21 torben 732
22 torben 771 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
23 torben 732
24 torben 771 <supports-screens android:smallScreens="true"
25 torben 732 android:normalScreens="true"
26     android:largeScreens="true"
27     android:anyDensity="true"/>
28 torben 632
29 torben 771 <uses-permission android:name="android.permission.INTERNET"/>
30 torben 632 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20