nextcloud-android/oc_jb_workaround/AndroidManifest.xml

28 lines
No EOL
977 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.owncloud.android.workaround.accounts"
android:versionCode="0100000"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="16" />
<application
android:allowBackup="false"
android:icon="@drawable/oc_workaround_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<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>