build.gradle
| 1 | apply plugin: 'com.android.library' |
| 2 | |
| 3 | android { |
| 4 | compileSdkVersion 33 |
| 5 | |
| 6 | defaultConfig { |
| 7 | minSdkVersion 15 |
| 8 | targetSdkVersion 33 |
| 9 | versionCode 1 |
| 10 | versionName "1.0" |
| 11 | |
| 12 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| 13 | consumerProguardFiles "consumer-rules.pro" |
| 14 | } |
| 15 | |
| 16 | buildTypes { |
| 17 | release { |
| 18 | minifyEnabled false |
| 19 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | dependencies { |
| 25 | implementation fileTree(dir: "libs", include: ["*.jar"]) |
| 26 | implementation 'androidx.appcompat:appcompat:1.5.0' |
| 27 | testImplementation 'junit:junit:4.13.2' |
| 28 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' |
| 29 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' |
| 30 | |
| 31 | } |