mirror of
https://github.com/inventree/inventree-app.git
synced 2025-07-31 17:51:37 +00:00
I don't even know. Some magic that I found on the internet...
This commit is contained in:
@@ -19,9 +19,15 @@ allprojects {
|
||||
rootProject.buildDir = '../build'
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
}
|
||||
subprojects {
|
||||
project.evaluationDependsOn(':app')
|
||||
project.configurations.all {
|
||||
resolutionStrategy.eachDependency { details ->
|
||||
if (details.requested.group == 'androidx.core' &&
|
||||
!details.requested.name.contains('androidx')) {
|
||||
details.useVersion "1.0.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
|
Reference in New Issue
Block a user