2017-08-30 9 views
0

私は自分のアプリにfirebaseを実装しようとしています。しかし、firebaseとgoogle playサービスとの間には干渉があります。ここ は、モジュールのための私のbuild.gradleです:Gradle - 展開できませんでした。cardview-v7-23.3.0.aar

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion "25.0.2" 

    defaultConfig { 
     applicationId "com.example.nefrin.client" 
     minSdkVersion 19 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
     // Enabling multidex support. 
     multiDexEnabled true 

    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
    dexOptions { 
     incremental true 
     javaMaxHeapSize "4g" 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 



    compile 'com.android.support:appcompat-v7:25.3.1' 
    compile 'com.google.android.gms:play-services:11.0.4' 
    compile 'com.github.tajchert:nammu:1.1.3' 
    compile 'gun0912.ted:tedpermission:1.0.3' 
    compile 'com.github.jksiezni.permissive:permissive:0.2' 
    compile 'com.github.arimorty:floatingsearchview:2.0.3' 
    //compile 'net.sf.sprockets:sprockets-android:4.0.0' 
    compile 'com.github.michael-rapp:android-material-dialog:4.0.2' 
    compile 'com.github.bumptech.glide:glide:3.5.2' 

    compile 'com.google.firebase:firebase-auth:11.2.0' 


} 
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.1.2' 
     classpath 'com.google.gms:google-services:3.1.0' // google-services plugin 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
     maven { 
      url "https://jitpack.io" 
     } 
     maven { 
      url 'https://oss.sonatype.org/content/repositories/snapshots' 
     } 
     maven { 
      url "https://maven.google.com" // Google's Maven repository 
     } 

    } 

} 

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

私は、私が使用していなかった私は本家取得アプリを実行しようとすると私のアプリでcardview: '11.0.4:PLAY-サービスcom.google.android.gms' と言う:

Error:Execution failed for task ':app:prepareComAndroidSupportCardviewV72330Library'. 
> Could not expand ZIP 'C:\Users\Nefrin\.gradle\caches\modules-2\files-2.1\com.android.support\cardview-v7\23.3.0\abdf83a0192c03ff190f941c6c885af18d257a2c\cardview-v7-23.3.0.aar'. 

Androidのメーカーは、コンパイルを強調され

All com.google.android.gms libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 11.2.0, 11.0.4. Examples include com.google.android.gms:play-services-basement:11.2.0 and com.google.android.gms:play-services:11.0.4 less... (Ctrl+F1) 

    There are some combinations of libraries, or tools and libraries, that are incompatible, or can lead to bugs. One such incompatibility is compiling with a version of the Android support libraries that is not the latest version (or in particular, a version lower than your targetSdkVersion.) 

答えて

0

エラーとして、すべてのGoogleライブラリで同じバージョンを使用する必要があります。
だから、プレイサービスのライブラリを更新し、firebaseと同じバージョンを使用する必要があります。

compile 'com.google.android.gms:play-services:11.2.0' 
compile 'com.google.firebase:firebase-auth:11.2.0' 
+0

私はあなたが言ったことをしましたが、カードビューエラーは依然として続きます。 –

0

あなたはこのコード行に変更する必要がありますと

compile 'com.google.android.gms:play-services:11.0.4' 

compile 'com.google.android.gms:play-services:11.2.0' 

それが役に立てば幸い。

+0

私はあなたが言ったことをしましたが、cardviewエラーは依然として続きます。 –

関連する問題