-
Notifications
You must be signed in to change notification settings - Fork 100
/
AndroidManifest.xml
29 lines (24 loc) · 1.42 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.udinic.sync_adapter_example"
android:versionCode="1"
android:versionName="1.0">
<!-- This manifest is for the library project that has the authentication logic -->
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17"/>
<application
android:icon="@drawable/ic_udinic">
<!-- *** Not really needed here, but convenient for copying to other apps that will use this module *** -->
<activity android:name=".authentication.AuthenticatorActivity" android:label="@string/login_label"/>
<activity android:name=".authentication.SignUpActivity" android:label="@string/signup_title" />
<service android:name=".authentication.UdinicAuthenticatorService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
</application>
<!-- *** Not really needed here, but convenient for copying to other apps that will use this module *** -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
</manifest>