import dialogplus

This commit is contained in:
Adrian Ulrich 2019-01-26 11:31:09 +01:00
parent 972999c60f
commit 4bbfcaf539
4 changed files with 15 additions and 5 deletions

View File

@ -16,6 +16,7 @@ release: clean
clean:
rm -rf ./app/build
rm -rf ./libs ; git checkout libs
uninstall:
adb uninstall ch.blinkenlights.android.vanilla

View File

@ -6,12 +6,12 @@ android {
disable 'ExtraTranslation'
}
compileSdkVersion 28
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "ch.blinkenlights.android.vanilla"
minSdkVersion 15
targetSdkVersion 28
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
}
buildTypes {
@ -29,6 +29,7 @@ android {
dependencies {
implementation 'com.android.support:support-core-ui:28.0.0'
implementation project(':dialogplus')
compileOnly 'com.android.support:support-annotations:28.0.0'
compileOnly 'junit:junit:4.12'
}

View File

@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.android.tools.build:gradle:3.1.3'
}
}
allprojects {
@ -13,3 +13,8 @@ allprojects {
jcenter()
}
}
ext {
compileSdkVersion = 28
targetSdkVersion = 28
minSdkVersion = 15
}

View File

@ -1 +1,4 @@
include ":app"
include "app"
include "dialogplus"
project(':dialogplus').projectDir = new File('./libs/dialogplus/dialogplus')