У меня проблема с использованием плагина трепетания Firestore (cloud_firestore).Приложение перестает работать и закрывается, когда я пытаюсь подключить приложение к Firestore.Я пытался решить эту проблему Flutter google plugin , и она не работает.
Android -> build.grandle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:3.2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Android -> Приложение -> build.grandle
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 27
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.******.********"
minSdkVersion 16
targetSdkVersion 27
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
apply plugin: 'com.google.gms.google-services'
это заголовок проблемы
Причина: java.lang.ClassNotFoundException: не найден класс "com.google.android.gms.internal.stable.zzb"по пути: DexPathList [[почтовый файл" /system/framework/org.apache.http.legacy.boot.jar ", почтовый файл" /data/app/com.******.****** -T9x9hLO9ijJmBPPrACSK5g == / base.apk "], nativeLibraryDirectories = [/ data / app / com. ******. ******** - T9x9hLO9ijJmBPPrACSK5g == / lib / x86, / data / app/com.*********.********-T9x9hLO9ijJmBPPrACSK5g==/base.apk!/lib/x86, / system / lib]]
Я использую этозависимости: firebase_auth: 0.5.11 cloud_firestore: 0.7.3 shared_preferences: 0.4.3
может кто-нибудь помочь мне решить проблему