2012-02-04 20:41:28 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-04-30 21:39:01 +04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="eu.alefzero.owncloud"
|
2012-04-08 20:41:23 +04:00
|
|
|
android:versionCode="1"
|
2012-04-30 21:39:01 +04:00
|
|
|
android:versionName="1.0" >
|
2012-04-08 20:41:23 +04:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_STATS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
|
2012-04-15 19:31:08 +04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2012-04-08 20:41:23 +04:00
|
|
|
|
|
|
|
<uses-sdk
|
2012-05-02 19:53:22 +04:00
|
|
|
android:minSdkVersion="8"
|
2012-04-08 20:41:23 +04:00
|
|
|
android:targetSdkVersion="13" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
|
|
|
|
</uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.FileDisplayActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/Theme.ownCloud" >
|
2012-04-30 21:39:01 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2012-04-08 20:41:23 +04:00
|
|
|
</activity>
|
|
|
|
<activity android:name=".Uploader" >
|
2012-02-04 20:41:28 +04:00
|
|
|
<intent-filter>
|
2012-04-08 20:41:23 +04:00
|
|
|
<action android:name="android.intent.action.SEND" >
|
|
|
|
</action>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" >
|
|
|
|
</category>
|
|
|
|
|
|
|
|
<data android:mimeType="*/*" >
|
|
|
|
</data>
|
2012-02-04 20:41:28 +04:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2012-04-08 20:41:23 +04:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" >
|
|
|
|
</action>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" >
|
|
|
|
</category>
|
|
|
|
|
|
|
|
<data android:mimeType="*/*" >
|
|
|
|
</data>
|
2012-02-04 20:41:28 +04:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-04-30 21:39:01 +04:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.Preferences"
|
|
|
|
android:theme="@style/Theme.ownCloud" >
|
2012-04-08 20:41:23 +04:00
|
|
|
</activity>
|
|
|
|
<activity android:name=".ui.activity.PreferencesNewSessionewSession" >
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".authenticator.AccountAuthenticatorService"
|
|
|
|
android:exported="true" >
|
2012-02-04 20:41:28 +04:00
|
|
|
<intent-filter>
|
2012-04-08 20:41:23 +04:00
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
2012-02-04 20:41:28 +04:00
|
|
|
</intent-filter>
|
2012-04-08 20:41:23 +04:00
|
|
|
|
2012-02-04 20:41:28 +04:00
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
</service>
|
2012-04-08 20:41:23 +04:00
|
|
|
<service
|
|
|
|
android:name=".syncadapter.FileSyncService"
|
|
|
|
android:exported="true" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.content.SyncAdapter" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.content.SyncAdapter"
|
|
|
|
android:resource="@xml/syncadapter_files" />
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".providers.FileContentProvider"
|
|
|
|
android:authorities="org.owncloud"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/sync_string_files"
|
|
|
|
android:syncable="true" >
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.AuthenticatorActivity"
|
2012-04-13 10:55:22 +04:00
|
|
|
android:exported="true"
|
2012-04-08 20:41:23 +04:00
|
|
|
android:theme="@style/Theme.ownCloud" >
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<service android:name=".FileDownloader" >
|
2012-02-04 20:41:28 +04:00
|
|
|
</service>
|
2012-04-30 21:39:01 +04:00
|
|
|
<service android:name=".location.LocationUpdateService" >
|
2012-04-15 19:31:08 +04:00
|
|
|
<intent-filter>
|
2012-04-30 21:39:01 +04:00
|
|
|
<action android:name="eu.alefzero.owncloud.location.LocationUpdateService" />
|
|
|
|
</intent-filter>
|
2012-04-15 19:31:08 +04:00
|
|
|
</service>
|
2012-04-30 21:39:01 +04:00
|
|
|
|
|
|
|
<receiver android:name=".location.LocationServiceLauncherReciever" >
|
2012-04-08 20:41:23 +04:00
|
|
|
<intent-filter>
|
2012-04-30 21:39:01 +04:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<action android:name="eu.alefzero.owncloud.location.LocationLauncher" />
|
2012-04-08 20:41:23 +04:00
|
|
|
|
2012-04-30 21:39:01 +04:00
|
|
|
<category android:name="android.intent.category.HOME" />
|
2012-02-04 20:41:28 +04:00
|
|
|
</intent-filter>
|
2012-04-30 21:39:01 +04:00
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.FileDetailActivity"
|
|
|
|
android:theme="@style/Theme.ownCloud" >
|
2012-04-08 20:41:23 +04:00
|
|
|
</activity>
|
2012-02-04 20:41:28 +04:00
|
|
|
</application>
|
2012-04-08 20:41:23 +04:00
|
|
|
|
2011-08-20 00:37:35 +04:00
|
|
|
</manifest>
|