-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[huawei_location] 6.12.0+302 and 6.12.0+303 didn't compile #375
Comments
UP ? |
up ? |
EArminjon
changed the title
6.12.0+302 didn't compile
6.12.0+302 and 6.12.0+303 didn't compile
Sep 20, 2024
Same for 6.12.0+303 Is this package dead ? |
EArminjon
changed the title
6.12.0+302 and 6.12.0+303 didn't compile
[huawei_location] 6.12.0+302 and 6.12.0+303 didn't compile
Sep 20, 2024
@ozkulbeng please, 6 months :'( |
With last version of gradle (8) here is the working patch : allprojects {
repositories {
google()
mavenCentral()
}
// https://github.com/HMS-Core/hms-flutter-plugin/issues/375
configurations.all { c ->
c.resolutionStrategy.eachDependency { DependencyResolveDetails dependency ->
if (dependency.requested.group == 'org.bouncycastle') {
dependency.useTarget "org.bouncycastle:bcprov-jdk15to18:1.69"
}
}
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Both issue got fixed but both releases didn't compile...
#342
#312
@ozkulbeng please check
Temporary solution :
android/build.gradle
Expected behavior
It should compile.
Current behavior
It didn't compile.
Logs
Check both issues to see logs.
Environment
The text was updated successfully, but these errors were encountered: