music-cyclon/app/build.gradle

33 lines
814 B
Groovy
Raw Normal View History

2015-08-19 17:48:05 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
2018-05-24 18:56:23 +02:00
buildToolsVersion '27.0.3'
2015-08-19 17:48:05 +02:00
defaultConfig {
applicationId "max.music_cyclon"
minSdkVersion 14
targetSdkVersion 23
2018-11-02 16:50:40 +01:00
versionCode 4
versionName "0.3.1"
2015-08-19 17:48:05 +02:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
2016-06-14 15:47:34 +02:00
compile 'com.squareup.okhttp3:okhttp:3.3.1'
2015-08-19 17:48:05 +02:00
compile 'commons-io:commons-io:2.4'
2016-06-13 21:35:21 +02:00
// compile 'com.android.support:appcompat-v7:23.4.0'
// and
// compile 'com.android.support:preference-v14:23.4.0'
// are provided by:
compile 'com.takisoft.fix:preference-v7:23.4.0.4'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
2015-08-19 17:48:05 +02:00
}