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

Annotation of /android/Side9/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1222 - (hide annotations) (download) (as text)
Tue Feb 8 07:32:07 2011 UTC (13 years, 3 months ago) by torben
File MIME type: text/xml
File size: 1607 byte(s)
Generate the thumb image from widgetprovider after the image has been saved on sdcard, which should lighten the burden on the ImageAdapter when the viewer launches
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 1222 android:versionName="22" android:versionCode="22">
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 torben 1217
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 torben 942 <activity android:name="PictureView" android:screenOrientation="portrait"/>
27 torben 790
28 torben 632 </application>
29 torben 732
30 torben 771 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
31 torben 732
32 torben 771 <supports-screens android:smallScreens="true"
33 torben 732 android:normalScreens="true"
34     android:largeScreens="true"
35     android:anyDensity="true"/>
36 torben 632
37 torben 771 <uses-permission android:name="android.permission.INTERNET"/>
38 torben 632 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20