|
@@ -1,11 +1,11 @@
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
android {
|
|
|
- compileSdkVersion 31
|
|
|
+ compileSdkVersion 33
|
|
|
defaultConfig {
|
|
|
applicationId "me.yoqi.android.xunfeitts"
|
|
|
minSdkVersion 19
|
|
|
- targetSdkVersion 31
|
|
|
+ targetSdkVersion 33
|
|
|
versionCode 1
|
|
|
versionName "1.1"
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
@@ -19,14 +19,18 @@ android {
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
- exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
- })
|
|
|
- implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
+ implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
+
|
|
|
+ implementation 'androidx.appcompat:appcompat:1.5.0'
|
|
|
+ implementation 'com.google.android.material:material:1.6.1'
|
|
|
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
+ testImplementation 'junit:junit:4.13.2'
|
|
|
+ androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
+
|
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
|
implementation 'com.jakewharton:butterknife:8.4.0'
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
|
|
|
- compile files('libs/Msc.jar')
|
|
|
+ implementation files('libs/Msc.jar')
|
|
|
implementation 'homhomlin.lib:sldinglayout:0.9.0'
|
|
|
}
|