|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 package="org.gege.caldavsyncadapter" |
|
4 android:versionCode="18" |
|
5 android:versionName="1.8.1" > |
|
6 |
|
7 <uses-sdk |
|
8 android:minSdkVersion="14" |
|
9 android:targetSdkVersion="19" /> |
|
10 |
|
11 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
|
12 <uses-permission android:name="android.permission.READ_CALENDAR" /> |
|
13 <uses-permission android:name="android.permission.WRITE_CALENDAR" /> |
|
14 <uses-permission android:name="android.permission.INTERNET" /> |
|
15 |
|
16 <application |
|
17 android:allowBackup="true" |
|
18 android:icon="@drawable/ic_launcher" |
|
19 android:label="@string/app_name" |
|
20 android:theme="@style/AppTheme" > |
|
21 <service |
|
22 android:name="org.gege.caldavsyncadapter.syncadapter.SyncService" |
|
23 android:exported="true" > |
|
24 <intent-filter> |
|
25 <action android:name="android.content.SyncAdapter" /> |
|
26 </intent-filter> |
|
27 |
|
28 <meta-data |
|
29 android:name="android.content.SyncAdapter" |
|
30 android:resource="@xml/syncadapter" /> |
|
31 </service> |
|
32 <service |
|
33 android:name="org.gege.caldavsyncadapter.authenticator.AuthenticationService" |
|
34 android:exported="true" > |
|
35 <intent-filter> |
|
36 <action android:name="android.accounts.AccountAuthenticator" /> |
|
37 </intent-filter> |
|
38 |
|
39 <meta-data |
|
40 android:name="android.accounts.AccountAuthenticator" |
|
41 android:resource="@xml/authenticator" /> |
|
42 </service> |
|
43 |
|
44 <activity |
|
45 android:name="org.gege.caldavsyncadapter.authenticator.AuthenticatorActivity" |
|
46 android:label="@string/title_activity_authenticator" |
|
47 android:windowSoftInputMode="adjustResize|stateVisible" > |
|
48 </activity> |
|
49 <activity |
|
50 android:name="org.gege.caldavsyncadapter.SyncStatusReportActivity" |
|
51 android:label="@string/title_activity_sync_status_report" > |
|
52 </activity> |
|
53 </application> |
|
54 |
|
55 </manifest> |