mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +03:00
move from deprecated ActionBarActivity to AppCompatActivity
This commit is contained in:
parent
60e0f09278
commit
bac0fa5f28
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue