Address crash caused by missing dependency.
This commit is contained in:
parent
887950b793
commit
e41caac7db
3 changed files with 6 additions and 2 deletions
|
@ -33,6 +33,8 @@ allprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation libraries.supportCoreUtils
|
||||||
|
|
||||||
if (rootProject.findProject(":lib")) {
|
if (rootProject.findProject(":lib")) {
|
||||||
implementation project(":lib")
|
implementation project(":lib")
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -4,11 +4,13 @@ ext.versions = [
|
||||||
minSdk : 18,
|
minSdk : 18,
|
||||||
targetSdk : 28,
|
targetSdk : 28,
|
||||||
buildTools : '28.0.3',
|
buildTools : '28.0.3',
|
||||||
|
supportCoreUtils : '28.0.0'
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.libraries = [
|
ext.libraries = [
|
||||||
androidGradlePlugin : "com.android.tools.build:gradle:$versions.androidGradlePlugin"
|
androidGradlePlugin : "com.android.tools.build:gradle:$versions.androidGradlePlugin",
|
||||||
|
supportCoreUtils : "com.android.support:support-core-utils:$versions.supportCoreUtils"
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.getExportPackageName = { ->
|
ext.getExportPackageName = { ->
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:support-core-utils:28.0.0"
|
implementation libraries.supportCoreUtils
|
||||||
}
|
}
|
||||||
|
|
||||||
def pathToRootDir = "../../../../"
|
def pathToRootDir = "../../../../"
|
||||||
|
|
Loading…
Reference in a new issue