nextcloud-android/oc_jb_workaround/AndroidManifest.xml

28 lines
960 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.owncloud.android.workaround.accounts"
2016-01-29 12:34:44 +03:00
android:versionCode="0100027"
android:versionName="1.0.27" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="19" />
<application
android:allowBackup="false"
2013-11-05 12:21:13 +04:00
android:icon="@drawable/workaround_app_icon"
android:label="@string/workaround_app_name"
>
<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>