2016-11-01 5 views
-4

の時期が早すぎます。クラスパス 'com.google.gms:google-services:3.0.0'をbuild.gradle(プロジェクトモジュール)に追加してプロジェクトを同期させます。ファイルの早すぎる部分のエラーを返します。Android Studio - エラー:Firebasse Storage用ファイル

これはbuild.gradle .gradle /キャッシュ FOLを削除するアプリモジュール)

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.2" 

    defaultConfig { 
     applicationId "com.example.ammar.backupcontacts_sms" 
     minSdkVersion 16 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 

    packagingOptions { 
     exclude 'META-INF/LICENSE' 
     exclude 'META-INF/LICENSE-FIREBASE.txt' 
     exclude 'META-INF/NOTICE' 
    } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.android.support:design:23.1.1' 
    compile 'com.firebase:firebase-client-android:2.5.2+' 
    compile 'com.jakewharton:butterknife:7.0.1' 
    compile 'commons-lang:commons-lang:2.6' 
    compile 'com.google.firebase:firebase-auth:9.6.0' 
    compile 'com.google.firebase:firebase-storage:9.6.0' 
    compile 'com.google.android.gms:play-services:9.8.00' 
} 
apply plugin: 'com.google.gms.google-services' 

build.gradle(プロジェクトモジュール)

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.2.2' 
     classpath 'com.google.gms:google-services:3.0.0' 
     /*classpath 'com.google.gms:google-services:1.3.0-beta1'*/ 
     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

Error:Premature end of file.

+0

私はあなたがfirebaseの基本知識を実証ないためdownvotedされていると思います。これまでトラブルシューティングをどのように行っているか教えてくれません。 –

+1

スクリーンショットを添付しないでください。関連するコードをテキストとして追加する質問を編集してください – rafid059

答えて

0

私のために問題を解決しました。

[Linuxの(SOLUS)のために、あなたはホーム.gradleフォルダを見つけることができます。あなたはそれが表示されない場合、おそらく、隠しフォルダを参照してくださいCTRL+Hを隠されています]

はそれが役に立てば幸い:)

+0

私のために働いていませんでした:( –