2013-01-18 16:33:08 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.owncloud.android.workaround.accounts"
|
2013-11-13 20:26:28 +04:00
|
|
|
android:versionCode="0100009"
|
|
|
|
android:versionName="1.0.9" >
|
2013-01-18 16:33:08 +04:00
|
|
|
|
2013-11-13 20:26:28 +04:00
|
|
|
<!-- uses-sdk
|
2013-01-18 16:33:08 +04:00
|
|
|
android:minSdkVersion="16"
|
2013-11-13 20:26:28 +04:00
|
|
|
android:targetSdkVersion="16" /-->
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="19" />
|
2013-01-18 16:33:08 +04:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
2013-11-05 12:21:13 +04:00
|
|
|
android:icon="@drawable/workaround_app_icon"
|
|
|
|
android:label="@string/workaround_app_name"
|
2013-11-13 20:26:28 +04:00
|
|
|
>
|
2013-01-18 16:33:08 +04:00
|
|
|
<service
|
|
|
|
android:name=".AccountAuthenticatorService"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter android:priority="1">
|
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|