mirror of
https://github.com/NiciDieNase/chaosflix
synced 2025-02-17 05:28:24 +00:00
move Version-Definitions to project-gradle-file
This commit is contained in:
parent
f78d22292e
commit
e03cc43745
2 changed files with 17 additions and 4 deletions
|
@ -24,6 +24,15 @@ allprojects {
|
|||
}
|
||||
}
|
||||
|
||||
ext{
|
||||
compileSdkVersion = 26
|
||||
buildToolsVersion = "26.0.1"
|
||||
supportLibraryVersion = "26.1.0"
|
||||
constraintLayoutVersion = "1.0.2"
|
||||
minSDK = 22
|
||||
targetSDK = 26
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
|
@ -1,13 +1,14 @@
|
|||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 25
|
||||
buildToolsVersion "25.0.2"
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 17
|
||||
targetSdkVersion 25
|
||||
// minSdkVersion rootProject.ext.minSDK
|
||||
targetSdkVersion rootProject.ext.targetSDK
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
|
@ -30,8 +31,11 @@ android {
|
|||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation 'com.android.support:appcompat-v7:25.4.0'
|
||||
implementation 'com.android.support:appcompat-v7:26.1.0'
|
||||
compile 'com.android.support:multidex:1.0.2'
|
||||
implementation "android.arch.lifecycle:runtime:1.0.0"
|
||||
implementation "android.arch.lifecycle:extensions:1.0.0-alpha9-1"
|
||||
annotationProcessor "android.arch.lifecycle:compiler:1.0.0-alpha9-1"
|
||||
|
||||
compile 'com.github.satyan:sugar:1.4'
|
||||
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
||||
|
|
Loading…
Add table
Reference in a new issue