| 1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 22
- buildToolsVersion '22.0.1'
- 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(include: ['*.jar'], dir: 'libs')
- compile 'com.android.support:support-v4:23.1.1'
- }
|