AndroidManifest.xml

changeset 0
fb9019fb1bf7
child 2
dee028db6e9b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/AndroidManifest.xml	Tue Feb 10 18:12:00 2015 +0100
     1.3 @@ -0,0 +1,55 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     1.6 +    package="org.gege.caldavsyncadapter"
     1.7 +    android:versionCode="18"
     1.8 +    android:versionName="1.8.1" >
     1.9 +
    1.10 +    <uses-sdk
    1.11 +        android:minSdkVersion="14"
    1.12 +        android:targetSdkVersion="19" />
    1.13 +
    1.14 +    <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
    1.15 +    <uses-permission android:name="android.permission.READ_CALENDAR" />
    1.16 +    <uses-permission android:name="android.permission.WRITE_CALENDAR" />
    1.17 +    <uses-permission android:name="android.permission.INTERNET" />
    1.18 +
    1.19 +    <application
    1.20 +        android:allowBackup="true"
    1.21 +        android:icon="@drawable/ic_launcher"
    1.22 +        android:label="@string/app_name"
    1.23 +        android:theme="@style/AppTheme" >
    1.24 +        <service
    1.25 +            android:name="org.gege.caldavsyncadapter.syncadapter.SyncService"
    1.26 +            android:exported="true" >
    1.27 +            <intent-filter>
    1.28 +                <action android:name="android.content.SyncAdapter" />
    1.29 +            </intent-filter>
    1.30 +
    1.31 +            <meta-data
    1.32 +                android:name="android.content.SyncAdapter"
    1.33 +                android:resource="@xml/syncadapter" />
    1.34 +        </service>
    1.35 +        <service
    1.36 +            android:name="org.gege.caldavsyncadapter.authenticator.AuthenticationService"
    1.37 +            android:exported="true" >
    1.38 +            <intent-filter>
    1.39 +                <action android:name="android.accounts.AccountAuthenticator" />
    1.40 +            </intent-filter>
    1.41 +
    1.42 +            <meta-data
    1.43 +                android:name="android.accounts.AccountAuthenticator"
    1.44 +                android:resource="@xml/authenticator" />
    1.45 +        </service>
    1.46 +
    1.47 +        <activity
    1.48 +            android:name="org.gege.caldavsyncadapter.authenticator.AuthenticatorActivity"
    1.49 +            android:label="@string/title_activity_authenticator"
    1.50 +            android:windowSoftInputMode="adjustResize|stateVisible" >
    1.51 +        </activity>
    1.52 +        <activity
    1.53 +            android:name="org.gege.caldavsyncadapter.SyncStatusReportActivity"
    1.54 +            android:label="@string/title_activity_sync_status_report" >
    1.55 +        </activity>
    1.56 +    </application>
    1.57 +
    1.58 +</manifest>
    1.59 \ No newline at end of file

mercurial