web-dev-qa-db-ja.com

Android-Studio(3.1)の更新後、Gradleプロジェクトの同期に失敗しました

2018年3月27日に更新した後、gradle同期が失敗します。エラーが発生しています。

Could not find org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2.

私は私のgradleファイルを以下に投稿しています。プロジェクトのクリーニングと再構築を試みましたが、まだ機能していません。

プロジェクトレベルグラドル

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

buildscript {
    repositories {
        google()
        jcenter()
        maven {
            url 'https://maven.google.com/'
        }
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.1.0'
        classpath 'com.google.gms:google-services:3.0.0'
        classpath 'com.loopj.Android:android-async-http:1.4.9'

        // 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
}

アプリレベルのグラドル

apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
        google()
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

buildscript {
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.0.1'
    }
}

Android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    lintOptions {
        disable 'InvalidPackage'
    }
    defaultConfig {
        applicationId 'app.myapp.com'
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 33
        versionName "1.1.30"
        useLibrary 'org.Apache.http.legacy'
        // Enabling multidex support.
        multiDexEnabled true
        vectorDrawables.useSupportLibrary = true
    }
    dexOptions {
        preDexLibraries = false
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
    lintOptions {
        checkReleaseBuilds false
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
    }
}
repositories {
    mavenCentral()
    jcenter()

    maven { url 'https://maven.fabric.io/public'

    }

    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
    google()
}

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


    compile project(':Android-async-http-1.4.9')


    //    compile 'com.daimajia.androidanimations:library:1.0.3@aar'
    compile project(':PayTabs_SDK_NOSCAN')
    compile('com.Twitter.sdk.Android:Twitter:1.14.1@aar') {
        transitive = true;
    }
    compile('org.Apache.httpcomponents:httpmime:4.3') {
        exclude module: "httpclient"
    }
    compile files('libs/signpost-core-1.2.1.2.jar')
    // Discovery and Outlook services
    compile('com.Microsoft.services:discovery-services:1.0.0@aar') {
        transitive = true
    }
    compile('com.Microsoft.services:Outlook-services:1.0.0@aar') {
        transitive = true
    }
    compile 'org.sufficientlysecure:html-textview:3.3'
    compile 'com.Android.support:appcompat-v7:25.3.1'
    compile 'com.Android.support:design:25.3.1'
    compile 'com.Android.support:support-v4:25.3.1'
    compile 'cz.msebera.Android:httpclient:4.3.6'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.slider:library:1.1.5@aar'
    compile 'me.dm7.barcodescanner:zxing:1.8.4'
    compile 'com.google.Android.gms:play-services:9.0.0'
    compile 'com.Android.support:multidex:1.0.1'
    compile 'com.google.gms:google-services:3.0.0'
    compile 'com.google.Android.gms:play-services-ads:9.0.0'
    compile 'com.google.Android.gms:play-services-auth:9.0.0'
    compile 'com.google.Android.gms:play-services-gcm:9.0.0'
    compile 'org.codepond:wizardroid:1.3.1'
    compile 'com.facebook.Android:facebook-Android-sdk:4.0.0'
    compile 'com.google.code.gson:gson:2.3.1'
    compile 'com.google.zxing:core:3.2.0'
    compile 'io.card:Android-sdk:5.3.0'
    compile 'com.google.firebase:firebase-messaging:9.0.1'
    compile 'com.mcxiaoke.volley:library-aar:1.0.0'
    compile 'me.dm7.barcodescanner:zbar:1.8.2'
    compile 'com.journeyapps:zxing-Android-embedded:3.0.2@aar'
    compile 'de.hdodenhof:circleimageview:2.0.0'
    compile 'com.cloudrail:cloudrail-si-Android:2.11.0'
    compile 'org.Apache.httpcomponents:httpclient-Android:4.3.5.1'
    compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
    compile 'com.Android.support.constraint:constraint-layout:1.0.2'
    compile 'com.Android.support:recyclerview-v7:25.3.1'
    compile 'com.ss.bannerslider:bannerslider:1.8.0'
    compile 'com.marshalchen.ultimaterecyclerview:library:0.7.3'
//    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7"


    testCompile 'junit:junit:4.12'
}
configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.Android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '25.3.1'
            }
        }
    }
}

知っていることはすべて試しましたが、今のところ何も機能していません。 Android St​​udioおよびGradleは最新バージョンに更新されます。更新前に動作していたアプリ。 developer.Android.comの指示に従ってgradleの移行を行いましたが、問題の解決に役立つと思われるものは何も記載されていません。

ここに表示されるエラーを投稿しています

Could not find org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2.
Searched in the following locations:
    https://maven.fabric.io/public/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.pom
    https://maven.fabric.io/public/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.jar
    https://dl.google.com/dl/Android/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.pom
    https://dl.google.com/dl/Android/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.jar
Required by:
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1 > com.Android.tools.build:builder:3.0.1
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1 > com.Android.tools.lint:lint:26.0.1
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1 > com.Android.tools.build:builder:3.0.1 > com.Android.tools:sdk-common:26.0.1
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1 > com.Android.tools.build:builder:3.0.1 > com.Android.tools:sdklib:26.0.1 > com.Android.tools:repository:26.0.1
    project :app > com.Android.tools.build:gradle:3.0.1 > com.Android.tools.build:gradle-core:3.0.1 > com.Android.tools.lint:lint:26.0.1 > com.Android.tools.lint:lint-checks:26.0.1 > com.Android.tools.lint:lint-api:26.0.1
18

私も同じ問題を思いつきました。 Android studioもkotlinプラグインを更新しようとしているようです。

[ツール]> [Kotlin]> [Kotlinプラグインの更新の構成]に移動して、プラグインを更新します。その後、スタジオを再起動すると、再起動時にGradleが同期されます。

5
Pixxu Waku

答えを見つけました。 gradleプラグインのバージョンを変更しました。以下にGradleファイルを追加しています。

プロジェクトレベル

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

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.1.0'
        classpath 'com.google.gms:google-services:3.1.1'
        classpath 'com.loopj.Android:android-async-http:1.4.9'

        // 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
}

アプリレベルのbuild.gradleファイル

apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.0.1'
    }
}

Android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    lintOptions {
        disable 'InvalidPackage'
    }
    defaultConfig {
        applicationId 'app.ecopon.com'
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 33
        versionName "1.1.30"
        useLibrary 'org.Apache.http.legacy'
        // Enabling multidex support.
        multiDexEnabled true
        vectorDrawables.useSupportLibrary = true
    }
    dexOptions {
        preDexLibraries = false
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
    lintOptions {
        checkReleaseBuilds false
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
    }
}
repositories {
    mavenCentral()
    jcenter()

    maven { url 'https://maven.fabric.io/public'

    }

    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
}

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


    compile project(':Android-async-http-1.4.9')

    //    compile 'com.daimajia.androidanimations:library:1.0.3@aar'
    compile project(':PayTabs_SDK_NOSCAN')
    compile('com.Twitter.sdk.Android:Twitter:1.14.1@aar') {
        transitive = true;
    }
    compile('org.Apache.httpcomponents:httpmime:4.3') {
        exclude module: "httpclient"
    }
    compile files('libs/signpost-core-1.2.1.2.jar')
    // Discovery and Outlook services
    compile('com.Microsoft.services:discovery-services:1.0.0@aar') {
        transitive = true
    }
    compile('com.Microsoft.services:Outlook-services:1.0.0@aar') {
        transitive = true
    }

    compile 'org.sufficientlysecure:html-textview:3.3'
    compile 'com.Android.support:appcompat-v7:25.3.1'
    compile 'com.Android.support:design:25.3.1'
    compile 'com.Android.support:support-v4:25.3.1'
    compile 'cz.msebera.Android:httpclient:4.3.6'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.slider:library:1.1.5@aar'
    compile 'me.dm7.barcodescanner:zxing:1.8.4'
    compile 'com.google.Android.gms:play-services:9.0.0'
    compile 'com.Android.support:multidex:1.0.1'
    compile 'com.google.gms:google-services:3.0.0'
    compile 'com.google.Android.gms:play-services-ads:9.0.0'
    compile 'com.google.Android.gms:play-services-auth:9.0.0'
    compile 'com.google.Android.gms:play-services-gcm:9.0.0'
    compile 'org.codepond:wizardroid:1.3.1'
    compile 'com.facebook.Android:facebook-Android-sdk:4.0.0'
    compile 'com.google.code.gson:gson:2.3.1'
    compile 'com.google.zxing:core:3.2.0'
    compile 'io.card:Android-sdk:5.3.0'
    compile 'com.google.firebase:firebase-messaging:9.0.0'
    compile 'com.mcxiaoke.volley:library-aar:1.0.0'
    compile 'me.dm7.barcodescanner:zbar:1.8.2'
    compile 'com.journeyapps:zxing-Android-embedded:3.0.2@aar'
    compile 'de.hdodenhof:circleimageview:2.0.0'
    compile 'com.cloudrail:cloudrail-si-Android:2.11.0'
    compile 'org.Apache.httpcomponents:httpclient-Android:4.3.5.1'
    compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
    compile 'com.Android.support.constraint:constraint-layout:1.0.2'
    compile 'com.Android.support:recyclerview-v7:25.3.1'
    compile 'com.ss.bannerslider:bannerslider:1.8.0'
    compile 'com.marshalchen.ultimaterecyclerview:library:0.7.3'

    compile 'com.github.barteksc:Android-pdf-viewer:2.8.2'


    testCompile 'junit:junit:4.12'
}
configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.Android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '25.3.1'
            }
        }
    }
}

今、すべてが完璧に機能しています

3

これに対する解決策を見つけました。以下のように、buildscriptおよびallprojectsリポジトリセクションにgoogle()を追加する必要があります。

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.1.1'

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

allprojects {
    repositories {
        google()
        jcenter()
    }
}
2
Wihan Fourie

1- http://services.gradle.org に移動します

2-ディストリビューションに移動

3-最新のものをクリックしてダウンロードします(「gradle-4.6-rc-2-all.Zip」をダウンロードしました)

4-解凍または解凍

5- Android St​​udioで、[ファイル]> [設定]> [ビルド、実行、展開]> [Gradle]> [ローカルgradle配布を使用]に移動し、コンピューターからファイル(ダウンロードして解凍)を選択します

6- [OK]をクリックします

7-「build.gradle(Module:app)」内で、compileSdkVersionとtargetSdkVersionが同じであることを確認します

8-今すぐ同期

リソース: https://www.youtube.com/watch?v=q_qWUQNbFLY

1
Alkhalil

Build.gradleのBuildscript部分を変更するには、これに、実際にgoogle()とjcenter()を削除します。これは私のために働いた。

buildscript {

repositories {
    maven { url 'https://jitpack.io' }
    mavenCentral()
    maven { url "https://maven.google.com" }
}


dependencies {
    classpath 'com.Android.tools.build:gradle:3.1.0'
}
}
1

キャッシュを無効にする(数回行った)か、スタジオを再インストールするか、gradle-wrapper.propertiesのdistributionUrlが次のようになっていることを確認してください。

distributionUrl = https://services.gradle.org/distributions/gradle-4.4-all.Zip

0
Skullper

Kotlinのバージョンを更新してみて、おそらく https://maven.google.com をallProjectsのリポジトリタグに追加してください。

その後、プロジェクトレベルのbuild.gradleは次のようになります。

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

buildscript {
   ext.kotlin_version = '1.2.30'
   repositories {
      jcenter()
      google()
   }
   dependencies {
      classpath 'com.Android.tools.build:gradle:3.1.0'
      classpath 'com.google.gms:google-services:3.1.0'
      classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
      classpath 'com.loopj.Android:android-async-http:1.4.9'
   }
}

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

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

それに加えて、プロジェクトをきれいにして、.gradleフォルダを手動で削除してみてください

0
RWIL