12345678910111213141516171819202122232425262728293031323334 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 21
- buildToolsVersion "21.0.1"
- defaultConfig {
- applicationId "de.nplusc.izc.izpl"
- minSdkVersion 19
- targetSdkVersion 21
- versionCode 1
- versionName "1.0"
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: '*.jar')
- compile files('libs/izpl-shared.jar')
- compile 'com.android.support:appcompat-v7:22.1.1'
- compile project(':filechooser')
- compile 'org.apache.logging.log4j:log4j-api:2.+'
- compile project(':exoplayer')
- }
|