2017-09-27 15 views
0

私はAndroidプロジェクトをビルドしています。以下のグラデル構成で。すべてがうまくいきました。プロジェクトにlottie-androidライブラリを追加しようとするまで。ライブラリとプロジェクトのアンドロイドの間の依存関係の競合

apply plugin: 'com.android.application' 
apply plugin: 'realm-android' 

android { 
    compileSdkVersion 25 
    buildToolsVersion "25.0.2" 
    defaultConfig { 
     applicationId "com.ignite.a01hw909350.kolamdemo" 
     minSdkVersion 19 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
     vectorDrawables.useSupportLibrary = true 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
     ndk { 
      abiFilters "armeabi", "armeabi-v7a", "x86", "mips" 
     } 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
    aaptOptions { 
     noCompress 'KARMarker' 
     noCompress 'armodel' 
    } 

} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile project(':KudanAR') 
    compile 'com.android.support:appcompat-v7:25.3.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
    compile 'com.android.volley:volley:1.0.0' 
    compile 'nl.dionsegijn:konfetti:1.0.2' 
    compile 'me.zhanghai.android.materialprogressbar:library:1.4.1' 
    compile 'io.palaima:smoothbluetooth:0.1.0' 
    compile 'com.android.support:recyclerview-v7:25.3.1' 
    compile 'com.afollestad.material-dialogs:core:0.9.3.0' 
    compile 'com.flurgle:camerakit:0.9.17' 
    compile 'com.github.zhukic:sectioned-recyclerview:1.0.0' 
    compile 'com.android.support:cardview-v7:25.3.1' 
    compile 'com.prolificinteractive:material-calendarview:1.4.3' 
    compile 'com.github.bumptech.glide:glide:3.8.0' 
    compile 'com.android.support:design:25.3.1' 
    compile 'com.github.barteksc:android-pdf-viewer:2.4.0' 
    compile 'org.rajawali3d:rajawali:[email protected]' 
    compile 'com.tapadoo.android:alerter:2.0.0' 
    compile 'com.google.android.gms:play-services-location:11.0.4' 
    compile 'com.github.GoodieBag:ProtractorView:v1.2' 
    compile 'com.android.support:gridlayout-v7:25.3.1' 
    compile 'com.stepstone.stepper:material-stepper:3.3.0' 
    compile 'pub.devrel:easypermissions:0.4.3' 
    compile 'com.intuit.sdp:sdp-android:1.0.4' 
    compile 'com.github.apl-devs:appintro:v4.2.2' 
    compile 'com.airbnb.android:lottie:2.2.5' 
    testCompile 'junit:junit:4.12' 
} 

私はcompile 'com.airbnb.android:lottie:2.2.5'をgradleに追加してコンパイルします。私は以下のエラーに陥っています。

Error:Failed to resolve: com.android.support:appcompat-v7:26.1.0 

現在のところ、自分のsdkを更新したくありません。このエラーを回避するにはどうすればよいですか?その後、アプリケーションのbuild.gradle

allprojects { 
    repositories { 
     jcenter() 
     maven { 
      url "https://maven.google.com" 
     } 
    } 
} 

答えて

3

とdependencie(複数可)を追加します。また

dependencies { 
    def supportLibrariesVersion = '26.1.0' 

    compile "com.android.support:support-compat:${supportLibrariesVersion}" 
    compile "com.android.support:cardview-v7:${supportLibrariesVersion}" 
    compile "com.android.support:recyclerview-v7:${supportLibrariesVersion}" 
    compile "com.android.support:gridlayout-v7:${supportLibrariesVersion}" 
    compile "com.android.support:design:${supportLibrariesVersion}" 
} 

を、あなたはそれが動作するために、以下の変更を行うにはしました:

compileSdkVersion 26 
buildToolsVersion "26.0.1" 
+0

を追加するには、ビルドスクリプトにこれを追加します。 https://stackoverflow.com/questions/46443975/manifest-merger-failed-with-multiple-errors-while-updating-to-api-26-in-android/ – XoXo

+0

回答を更新しました。それがあなたの問題を解決するかどうか私に教えてください。 – Benjamin

+0

私は同じことを試みました。しかし、私はいくつかの奇妙なエラーが発生しています。これに関連する別の質問を確認してください。私はいくつかの合併マニフェストエラーを取得しています。 https://stackoverflow.com/questions/46443975/manifest-merger-failed-with-multiple-errors-while-updating-to-api-26-in-android/ – XoXo

1

appcompat-v7:26.1.0 lib lottieライブラリでおそらく使用されています)は、ビルドツールのバージョンより新しいものです。ビルドツールのバージョンを26.0.1に、コンパイルのsdkVersionを26に設定してみてください。 さらに、古いバージョンの同じライブラリを使用しようとしています (com.android.support:appcompat-v7:25.3.1 ')も問題になる可能性があります。

Googleは新しい場所にリポジトリを移動しました。あなたはアンドロイドのGradleプラグイン> 3を使用する場合だけで、他の

repositories { 
    google() 
} 

は、上記の変更を行った後、このエラーを取得するこの

repositories { 
    maven { 
     url "https://maven.google.com" 
    } 
} 
+0

自分のグラデルを更新した後にこのエラーが発生する: https://stackoverflow.com/questions/46443975/manifest-merger-failed-with-multiple-errors-while-updating-to-api-26-in-android/ – XoXo

関連する問題