| 123456789101112131415161718192021222324252627 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28 //23
- buildToolsVersion '28.0.2'
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 28 //23
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- // compile fileTree(include: ['*.jar'], dir: 'libs')
- // testCompile 'junit:junit:4.12'
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- // testCompile 'junit:junit:4.12'
- }
|