2010-07-19 04:46:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-03-13 20:01:50 +00:00
|
|
|
package="org.camlistore"
|
2010-07-19 04:46:02 +00:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2010-12-21 03:27:22 +00:00
|
|
|
|
|
|
|
<!-- Note: only using SDK 8 for android.util.Base64; could fix and let
|
|
|
|
Donut users (SDK 4) use this too .... -->
|
|
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2010-07-24 06:16:24 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.BATTERY_STATS" />
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
2011-03-13 23:45:23 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2010-07-19 16:36:39 +00:00
|
|
|
|
2010-12-22 00:05:20 +00:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
|
|
|
android:name=".UploadApplication">
|
2010-07-19 06:12:03 +00:00
|
|
|
|
2010-07-20 00:10:52 +00:00
|
|
|
<service android:name=".UploadService"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="Camlistore Upload Service" />
|
|
|
|
|
2011-03-13 23:45:23 +00:00
|
|
|
<service android:name=".DownloadService"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="Camlistore Download Service" />
|
|
|
|
|
2010-07-19 04:46:02 +00:00
|
|
|
<activity android:name=".CamliActivity"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2010-07-19 16:36:39 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2010-07-19 04:46:02 +00:00
|
|
|
</activity>
|
|
|
|
|
2011-03-13 23:45:23 +00:00
|
|
|
<activity android:name=".BrowseActivity">
|
|
|
|
</activity>
|
|
|
|
|
2010-12-21 03:27:22 +00:00
|
|
|
<activity android:name=".SettingsActivity">
|
|
|
|
</activity>
|
2010-07-26 07:11:03 +00:00
|
|
|
|
2010-12-21 03:27:22 +00:00
|
|
|
<receiver android:name=".OnBootReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2010-07-26 07:11:03 +00:00
|
|
|
|
2010-12-21 03:27:22 +00:00
|
|
|
<receiver android:name=".OnAlarmReceiver">
|
|
|
|
</receiver>
|
2010-07-26 07:11:03 +00:00
|
|
|
|
|
|
|
<receiver android:name=".WifiPowerReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:priority="0">
|
2010-12-21 03:27:22 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
|
|
</intent-filter>
|
2010-07-26 07:11:03 +00:00
|
|
|
</receiver>
|
2010-07-19 04:46:02 +00:00
|
|
|
|
2010-07-19 06:12:03 +00:00
|
|
|
</application>
|
2010-12-21 03:27:22 +00:00
|
|
|
</manifest>
|