import dialogplus
This commit is contained in:
parent
972999c60f
commit
4bbfcaf539
1
Makefile
1
Makefile
@ -16,6 +16,7 @@ release: clean
|
||||
|
||||
clean:
|
||||
rm -rf ./app/build
|
||||
rm -rf ./libs ; git checkout libs
|
||||
|
||||
uninstall:
|
||||
adb uninstall ch.blinkenlights.android.vanilla
|
||||
|
@ -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'
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -1 +1,4 @@
|
||||
include ":app"
|
||||
include "app"
|
||||
include "dialogplus"
|
||||
|
||||
project(':dialogplus').projectDir = new File('./libs/dialogplus/dialogplus')
|
||||
|
Loading…
x
Reference in New Issue
Block a user