build.gradle 490 B

1234567891011121314151617181920212223
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 22
  4. buildToolsVersion '22.0.1'
  5. defaultConfig {
  6. minSdkVersion 9
  7. targetSdkVersion 23
  8. versionCode 8
  9. versionName "1.2.3"
  10. }
  11. compileOptions {
  12. sourceCompatibility JavaVersion.VERSION_1_7
  13. targetCompatibility JavaVersion.VERSION_1_7
  14. }
  15. }
  16. dependencies {
  17. compile fileTree(include: ['*.jar'], dir: 'libs')
  18. compile 'com.android.support:support-v4:23.1.1'
  19. }