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

Contents of /android/Side9/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 912 - (show annotations) (download) (as text)
Sat Jun 26 08:21:22 2010 UTC (13 years, 10 months ago) by torben
File MIME type: text/xml
File size: 1226 byte(s)
Enable use of CheckUpdates
PictureOverview: don't crash if /sdcard/Side9 folder couldn't be found
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="dk.thoerup.side9"
4 android:versionName="1.0" android:versionCode="9">
5 <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 <activity android:name=".Side9Config">
13 <intent-filter>
14 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
15 </intent-filter>
16 </activity>
17
18 <activity android:name="PictureOverview"/>
19
20 </application>
21
22 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
23
24 <supports-screens android:smallScreens="true"
25 android:normalScreens="true"
26 android:largeScreens="true"
27 android:anyDensity="true"/>
28
29 <uses-permission android:name="android.permission.INTERNET"/>
30 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20