import dialogplus
This commit is contained in:
parent
972999c60f
commit
4bbfcaf539
1
Makefile
1
Makefile
@ -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
|
||||||
|
@ -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'
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
}
|
||||||
|
@ -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