【開発環境】
Flutter: 1.12.13+hotfix.8
Android Studio: 3.5.3
######【質問内容】
公式ドキュメントを見てFlutterとFirebaseの接続設定をしました。
Android Studioでツール > Firebase > リアルタイムデータベース を開いて一番上のconnect to Firebaseを押すと、モジュールが見つからないとエラーが出ます。
Firebase: Could not find the Android Application module. Only Android Application Modules can be connected to Firebase online projects. Create a new Android Application Module or create/import a different Android Studio project.
調べてみても原因が分からず、途方に暮れています。
いったい何が原因なのでしょうか?
######【設定ファイル】
プロジェクト名>android>app>build.gradle↓
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 FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") // 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 29 lintOptions { disable 'InvalidPackage' } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.timetable_for_students" minSdkVersion 16 targetSdkVersion 29 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.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 'androidx.test:runner:1.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation 'com.google.firebase:firebase-core:16.0.7' } //Firebase利用のために追記 apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin
プロジェクト名>android>build.gradle↓
buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.5.3' //Firebase利用のために追記 classpath 'com.google.gms:google-services:3.2.1' // Google Services plugin } } 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 }
pubspec.yamlのdependenciesに追記↓
firebase_core: ^0.2.5 #Firebaseを利用するためのプラグイン firebase_analytics: ^1.0.4 #google analiticsを利用するためのプラグイン firebase_database: any #realtime databaseを利用するためのプラグイン
######【試したこと】
- ターミナルでflutter packages get
- Open for Editing Android Studioから設定ファイルの同期
- Firebaseコンソールのアナリティクス>Dashboardを見ると、ユーザー数1となっており接続できていることが確認できた。
回答1件
あなたの回答
tips
プレビュー