build: small fixes related to gradle 8.7 upgrade
This commit is contained in:
parent
78ef936369
commit
0eadff1327
@ -105,6 +105,12 @@ afterEvaluate {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is required because we must ensure the moveNativeAndroidLibs task is executed after
|
||||||
|
// the mergeReleaseJniLibFolders (hard requirement introduced by our upgrade to Gradle 8.7)
|
||||||
|
tasks.named("mergeReleaseJniLibFolders") {
|
||||||
|
dependsOn(":lib:moveNativeAndroidLibs")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
signing {
|
signing {
|
||||||
|
@ -113,6 +113,8 @@ internal class UniFfiAndroidPlugin : Plugin<Project> {
|
|||||||
val moveNativeAndroidLibs by tasks.register<Copy>("moveNativeAndroidLibs") {
|
val moveNativeAndroidLibs by tasks.register<Copy>("moveNativeAndroidLibs") {
|
||||||
|
|
||||||
dependsOn(buildAndroidAarch64Binary)
|
dependsOn(buildAndroidAarch64Binary)
|
||||||
|
dependsOn(buildAndroidArmv7Binary)
|
||||||
|
dependsOn(buildAndroidX86_64Binary)
|
||||||
|
|
||||||
into("${project.projectDir}/../lib/src/main/jniLibs/")
|
into("${project.projectDir}/../lib/src/main/jniLibs/")
|
||||||
|
|
||||||
|
@ -13,5 +13,6 @@ pluginManagement {
|
|||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
google()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user