Index: tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml |
diff --git a/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml b/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml |
index efd4f33ec2c6876d2eb37b831c458623561e665b..bb48308fbc3cf8e1f746c7e97491da27a4759521 100644 |
--- a/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml |
+++ b/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml |
@@ -9,6 +9,10 @@ |
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="23" /> |
+ <!-- |
+ Deprecated permissions. Normal protection level, autogranted. Needed |
+ for API level 22 and before. |
+ --> |
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
@@ -27,6 +31,14 @@ |
android:name="android.accounts.AccountAuthenticator" |
android:resource="@xml/spnego_authenticator" /> |
dgn
2015/11/11 12:05:31
I tried to remove my code to show the notification
|
</service> |
+ |
+ <!-- exported=true needed so that chrome can start the activity --> |
+ <activity |
+ android:exported="true" |
+ android:label="@string/title_activity_account_authenticator" |
+ android:name=".SpnegoAuthenticatorActivity" |
+ android:noHistory="true"> |
+ </activity> |
</application> |
</manifest> |