File tree 4 files changed +9
-6
lines changed
src/main/java/com/codepath/oauth
4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ android {
37
37
defaultConfig {
38
38
versionCode 1
39
39
versionName VERSION_NAME
40
- minSdkVersion 14
40
+ minSdkVersion 21
41
41
targetSdkVersion 28
42
42
}
43
43
@@ -114,8 +114,7 @@ ext {
114
114
}
115
115
116
116
dependencies {
117
- api " com.android.support:appcompat-v7:${ supportVersion} "
118
- api " com.android.support:support-v4:${ supportVersion} "
117
+ api " androidx.appcompat:appcompat:1.0.2"
119
118
api ' com.loopj.android:android-async-http:1.4.9'
120
119
implementation files(' libs/codepath-utils.jar' )
121
120
api ' com.github.scribejava:scribejava-apis:4.1.1'
Original file line number Diff line number Diff line change 4
4
5
5
import android .content .Intent ;
6
6
import android .net .Uri ;
7
- import android .support .v7 .app .AppCompatActivity ;
7
+
8
+ import androidx .appcompat .app .AppCompatActivity ;
9
+
8
10
9
11
// This is the ActionBarActivity supportv7 version of LoginActivity
10
12
public abstract class OAuthLoginActionBarActivity <T extends OAuthBaseClient > extends
Original file line number Diff line number Diff line change 2
2
3
3
import android .content .Intent ;
4
4
import android .net .Uri ;
5
- import android .support .v4 .app .FragmentActivity ;
5
+
6
+ import androidx .fragment .app .FragmentActivity ;
6
7
7
8
import com .codepath .utils .GenericsUtil ;
8
9
Original file line number Diff line number Diff line change 2
2
3
3
import android .net .Uri ;
4
4
import android .os .Bundle ;
5
- import android .support .v4 .app .Fragment ;
5
+
6
+ import androidx .fragment .app .Fragment ;
6
7
7
8
import com .codepath .utils .GenericsUtil ;
8
9
You can’t perform that action at this time.
0 commit comments