summaryrefslogtreecommitdiff
path: root/src/clojure/io/cons/carddav_sync/authenticator.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/io/cons/carddav_sync/authenticator.clj')
-rw-r--r--src/clojure/io/cons/carddav_sync/authenticator.clj10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/clojure/io/cons/carddav_sync/authenticator.clj b/src/clojure/io/cons/carddav_sync/authenticator.clj
index c8bd349..d158494 100644
--- a/src/clojure/io/cons/carddav_sync/authenticator.clj
+++ b/src/clojure/io/cons/carddav_sync/authenticator.clj
@@ -3,7 +3,9 @@
(:import android.accounts.AccountManager
android.content.Intent
android.os.Bundle
- io.cons.carddav_sync.authenticator_activity)
+ [io.cons.carddav_sync
+ authenticator_activity
+ SplashActivity])
(:gen-class
:extends android.accounts.AbstractAccountAuthenticator
:state context
@@ -16,10 +18,12 @@
(defn -addAccount
[this response accountType authTokenType requiredFeatures options]
(log-i "addAccount")
- (let [intent (Intent. (.context this) authenticator_activity)
+ (let [selector (Intent. (.context this) authenticator_activity)
+ intent (Intent. (.context this) SplashActivity)
bundle (Bundle.)]
- (.putExtra intent AccountManager/KEY_ACCOUNT_AUTHENTICATOR_RESPONSE
+ (.putExtra selector AccountManager/KEY_ACCOUNT_AUTHENTICATOR_RESPONSE
response)
+ (.setSelector intent selector)
(.putParcelable bundle AccountManager/KEY_INTENT intent)
bundle))