move from deprecated ActionBarActivity to AppCompatActivity
authorAndy Scherzinger <info@andy-scherzinger.de>
Thu, 13 Aug 2015 15:54:33 +0000 (17:54 +0200)
committerAndy Scherzinger <info@andy-scherzinger.de>
Thu, 13 Aug 2015 15:54:33 +0000 (17:54 +0200)
src/com/owncloud/android/authentication/AccountAuthenticatorActivity.java

index c44b043..7dfb38b 100644 (file)
@@ -20,6 +20,7 @@ import android.accounts.AccountAuthenticatorResponse;
 import android.accounts.AccountManager;
 import android.os.Bundle;
 import android.support.v7.app.ActionBarActivity;
+import android.support.v7.app.AppCompatActivity;
 
 /*
  * Base class for implementing an Activity that is used to help implement an AbstractAccountAuthenticator. 
@@ -32,7 +33,7 @@ import android.support.v7.app.ActionBarActivity;
  * then error AccountManager.ERROR_CODE_CANCELED will be called on the response.
  */
 
-public class AccountAuthenticatorActivity extends ActionBarActivity {
+public class AccountAuthenticatorActivity extends AppCompatActivity {
 
     private AccountAuthenticatorResponse mAccountAuthenticatorResponse = null;
     private Bundle mResultBundle = null;