123456789101112131415161718192021222324252627282930313233343536 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- defaultConfig {
- applicationId "me.yoqi.android.xunfeitts"
- minSdkVersion 19
- targetSdkVersion 33
- versionCode 1
- versionName "1.1"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- 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'
- implementation files('libs/Msc.jar')
- implementation 'homhomlin.lib:sldinglayout:0.9.0'
- }
|