| 1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 23
- buildToolsVersion '23.0.2'
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 23
- versionCode 8
- versionName "1.2.3"
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:support-v4:23.1.1'
- }
|