File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
src/main/java/com/codepath/oauth Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ android {
3737 defaultConfig {
3838 versionCode 1
3939 versionName VERSION_NAME
40- minSdkVersion 14
40+ minSdkVersion 21
4141 targetSdkVersion 28
4242 }
4343
@@ -114,8 +114,7 @@ ext {
114114}
115115
116116dependencies {
117- api " com.android.support:appcompat-v7:${ supportVersion} "
118- api " com.android.support:support-v4:${ supportVersion} "
117+ api " androidx.appcompat:appcompat:1.0.2"
119118 api ' com.loopj.android:android-async-http:1.4.9'
120119 implementation files(' libs/codepath-utils.jar' )
121120 api ' com.github.scribejava:scribejava-apis:4.1.1'
Original file line number Diff line number Diff line change 44
55import android .content .Intent ;
66import android .net .Uri ;
7- import android .support .v7 .app .AppCompatActivity ;
7+
8+ import androidx .appcompat .app .AppCompatActivity ;
9+
810
911// This is the ActionBarActivity supportv7 version of LoginActivity
1012public abstract class OAuthLoginActionBarActivity <T extends OAuthBaseClient > extends
Original file line number Diff line number Diff line change 22
33import android .content .Intent ;
44import android .net .Uri ;
5- import android .support .v4 .app .FragmentActivity ;
5+
6+ import androidx .fragment .app .FragmentActivity ;
67
78import com .codepath .utils .GenericsUtil ;
89
Original file line number Diff line number Diff line change 22
33import android .net .Uri ;
44import android .os .Bundle ;
5- import android .support .v4 .app .Fragment ;
5+
6+ import androidx .fragment .app .Fragment ;
67
78import com .codepath .utils .GenericsUtil ;
89
You can’t perform that action at this time.
0 commit comments