卒業制作データraspiとandroidアプリをfirebaseで連携させようと思っているのですが、
androidとfirebaseとのsdk設定の段階で同期するとエラーが出ます。
エラー文は以下のようになっていて多分apply pluginが2個あるか場所が離れている的なことを言ってると
思うのですが、近くにしても治りません。
FAILURE: Build failed with an exception. * Where: Build file 'ファイルパス\app\build.gradle' line: 1 * What went wrong: A problem occurred evaluating project ':app'. > ASCII
以下に今回のsdk設定でいじったコードを載せます。
コメント文の下記のコードがいじったものになります。
アプリレベル gradle
apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "アプリid" minSdkVersion 28 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' 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' //com.google.firebaseの追加 implementation 'com.google.firebase:firebase-analytics:17.2.0' } //com.google.gmsの追加 apply plugin: 'com.google.gms.google-services'
プロジェクトレベル
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { //google()の追加 google() jcenter() } dependencies { //com.google.gmsを追加 classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.google.gms:google-services:4.3.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { //google()の追加 google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
あとはappフォルダにgoogle-services.jsonを追加してsync nowを押せと言われたから実行した結果冒頭で記述したエラーが出ました。
ほかのfirebaseとandroidとの連携してみたというようなサイトはここは通っているので正直原因が不明です。
idea.logを見ると
org.gradle.tooling.BuildException: Could not run build action using Gradle distribution 'https://services.gradle.org/distributions/gradle-4.6-all.zip'.
このようなエラーは出ていました。
回答のほどよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー