|
|
|
|
@ -34,12 +34,23 @@ apply plugin: 'com.google.gms.google-services'
|
|
|
|
|
//apply plugin: 'com.google.firebase.crashlytics'
|
|
|
|
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
|
resolutionStrategy {
|
|
|
|
|
force 'androidx.core:core-ktx:1.6.0'
|
|
|
|
|
c -> c.resolutionStrategy.eachDependency {
|
|
|
|
|
DependencyResolveDetails dependency ->
|
|
|
|
|
println dependency.requested.group
|
|
|
|
|
if (dependency.requested.group == 'org.bouncycastle') {
|
|
|
|
|
dependency.useTarget 'org.bouncycastle:bcprov-jdk15to18:1.68'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//configurations.all {
|
|
|
|
|
// resolutionStrategy {
|
|
|
|
|
// force 'androidx.core:core-ktx:1.6.0'
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 34
|
|
|
|
|
|
|
|
|
|
|