Sat, 14 Feb 2015 00:35:00 +0100
Correct build time dependency of assert added in changeset e8c0da59391a.
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="19"
5 android:versionName="1.8.2" >
7 <uses-sdk
8 android:minSdkVersion="14"
9 android:targetSdkVersion="19" />
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" />
16 <application
17 android:allowBackup="true"
18 android:icon="@drawable/ic_launcher"
19 android:label="@string/app_name"
20 android:name="com.europalab.Caldavsync"
21 android:theme="@style/AppTheme" >
22 <service
23 android:name="org.gege.caldavsyncadapter.syncadapter.SyncService"
24 android:exported="true" >
25 <intent-filter>
26 <action android:name="android.content.SyncAdapter" />
27 </intent-filter>
29 <meta-data
30 android:name="android.content.SyncAdapter"
31 android:resource="@xml/syncadapter" />
32 </service>
33 <service
34 android:name="org.gege.caldavsyncadapter.authenticator.AuthenticationService"
35 android:exported="true" >
36 <intent-filter>
37 <action android:name="android.accounts.AccountAuthenticator" />
38 </intent-filter>
40 <meta-data
41 android:name="android.accounts.AccountAuthenticator"
42 android:resource="@xml/authenticator" />
43 </service>
45 <activity
46 android:name="org.gege.caldavsyncadapter.authenticator.AuthenticatorActivity"
47 android:label="@string/title_activity_authenticator"
48 android:windowSoftInputMode="adjustResize|stateVisible" >
49 </activity>
50 <activity
51 android:name="org.gege.caldavsyncadapter.SyncStatusReportActivity"
52 android:label="@string/title_activity_sync_status_report" >
53 </activity>
54 </application>
56 </manifest>