1
0

build.gradle 855 B

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 21
  4. buildToolsVersion "21.0.1"
  5. defaultConfig {
  6. applicationId "de.nplusc.izc.izpl"
  7. minSdkVersion 19
  8. targetSdkVersion 21
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. compileOptions {
  13. sourceCompatibility JavaVersion.VERSION_1_7
  14. targetCompatibility JavaVersion.VERSION_1_7
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23. dependencies {
  24. api fileTree(dir: 'libs', include: '*.jar')
  25. api files('libs/izpl-shared.jar')
  26. api 'com.android.support:appcompat-v7:22.1.1'
  27. api project(':filechooser')
  28. api 'org.apache.logging.log4j:log4j-api:2.+'
  29. api project(':exoplayer')
  30. }