mirror of
https://github.com/etesync/android
synced 2024-11-22 16:08:13 +00:00
9a9d9709c9
* fixed annoying bug where all imported contacts where starred * checkbox for preemptive authentication in setup * support for (non-preemptive) Digest authentication * add UID when received entities don't contain one * version bump to 0.3.2-alpha * build.xml for ant/Fdroid
68 lines
2.5 KiB
XML
68 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="at.bitfire.davdroid"
|
|
android:versionCode="5"
|
|
android:versionName="0.3.2-alpha" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="14"
|
|
android:targetSdkVersion="17" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
|
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
|
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
|
|
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme">
|
|
<service
|
|
android:name=".syncadapter.AccountAuthenticatorService"
|
|
android:exported="false" >
|
|
<intent-filter>
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
android:resource="@xml/account_authenticator" />
|
|
</service>
|
|
<service
|
|
android:name=".syncadapter.ContactsSyncAdapterService"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.content.SyncAdapter" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.content.SyncAdapter"
|
|
android:resource="@xml/sync_contacts" />
|
|
<meta-data
|
|
android:name="android.provider.CONTACTS_STRUCTURE"
|
|
android:resource="@xml/contacts" />
|
|
</service>
|
|
<service
|
|
android:name=".syncadapter.CalendarsSyncAdapterService"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.content.SyncAdapter" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.content.SyncAdapter"
|
|
android:resource="@xml/sync_calendars" />
|
|
</service>
|
|
|
|
<activity
|
|
android:name=".syncadapter.AddAccountActivity"
|
|
android:excludeFromRecents="true" >
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|