| 1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 26
- buildToolsVersion '26.0.2'
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 22
- versionCode 232
- versionName "2.3.2"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- }
|