dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
def sqlite_version = "3.41.2"
implementation "eu.simonbinder:sqlite3-native-library:$sqlite_version"
}
При сборке APK ошибка!
Как правильно добавить зависимость на sqlite3-native-library?
А какая ошибка?
flutter build apk --release FAILURE: Build failed with an exception. * Where: Build file '/Users/……………./android/build.gradle' line: 13 * What went wrong: A problem occurred evaluating root project 'android'. > Could not find method implementation() for arguments [eu.simonbinder:sqlite3-native-library:3.38.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 600ms Running Gradle task 'assembleRelease'... 1 123ms Gradle task assembleRelease failed with exit code 1 Получается что не может скачать эту либу! Но в доках к sqlite3: ^1.11.2 ничего дополнительно не требовалось
Обсуждают сегодня