12345678910111213141516171819202122 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.2"
- defaultConfig {
- minSdkVersion 8
- targetSdkVersion 23
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
- dependencies {
- compile 'com.android.support:support-v4:23.2.0'
- }
|