お世話になっております。
Android StudioでML kit for FIREBASEを組み込むためHPを見ながら設定を行っていたのですが
build gradleに設定を追加し、同期させたのですが以下のエラ-が出ています。
”Plugin with id 'com.android.application' not found.”
FIREBASEのHP通りにしたのですが、この同期がうまくいきません。
最初はgradleのバージョンが最新ではなかったため、発生しているのかと思い
gradleバージョンを6.1.1⇒6.5.1にupし同期しましたがそれでも発生してしまいます。。。
原因か見つけきれず苦慮しておりますので、すいませんがアドバイス頂けないでしょうか?
---build gradle(プロジェクト)--- buildscript { repositories { google() jcenter() } dependencies { classpath 'com.google.gms:google-services:4.3.4' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
---build gradle(モジュール)--- apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services' android { compileSdkVersion 30 buildToolsVersion "30.0.1" defaultConfig { applicationId "com.e.tonikakukawaii" minSdkVersion 26 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation platform('com.google.firebase:firebase-bom:26.0.0') implementation 'com.google.firebase:firebase-analytics' }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。