| 1234567891011121314151617181920212223242526272829303132333435 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 27
- defaultConfig {
- minSdkVersion 15
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- zipAlignEnabled true
- // shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.0.0'
- // testImplementation 'junit:junit:4.12'
- // androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- // androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
- }
|