| 1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 24
- buildToolsVersion '25.0.0'
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 24
- 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:appcompat-v7:24.2.1'
- }
|