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

Contents of /android/Side9/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1223 - (show annotations) (download) (as text)
Wed Feb 9 07:14:53 2011 UTC (13 years, 3 months ago) by torben
File MIME type: text/xml
File size: 1607 byte(s)
(Experimental) load the thumbs ad-hoc but cache the thumb once it's loaded

Bump version to 23
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="23" android:versionCode="23">
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
19 <activity android:name="PictureOverview" android:label="Side 9 pigen"> <!-- launcher activity -->
20 <intent-filter>
21 <action android:name="android.intent.action.MAIN" />
22 <category android:name="android.intent.category.LAUNCHER" />
23 </intent-filter>
24 </activity>
25
26 <activity android:name="PictureView" android:screenOrientation="portrait"/>
27
28 </application>
29
30 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
31
32 <supports-screens android:smallScreens="true"
33 android:normalScreens="true"
34 android:largeScreens="true"
35 android:anyDensity="true"/>
36
37 <uses-permission android:name="android.permission.INTERNET"/>
38 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20