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: clean:
rm -rf ./app/build rm -rf ./app/build
rm -rf ./libs ; git checkout libs
uninstall: uninstall:
adb uninstall ch.blinkenlights.android.vanilla adb uninstall ch.blinkenlights.android.vanilla

View File

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

View File

@ -4,7 +4,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.3' classpath 'com.android.tools.build:gradle:3.1.3'
} }
} }
allprojects { allprojects {
@ -13,3 +13,8 @@ allprojects {
jcenter() 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')