错误:无法解析:org.json:json:20160810

时间:2017-05-20 04:46:49

标签: android gradle

我刚刚将我的android工作室升级到3.0 canery 1.现在我在同步我的项目时遇到了问题,这在我以前版本的android studio上工作正常。

这是我的档案

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.******.app"
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.afollestad:bridge:5.1.2'
    compile 'com.vistrav:ask:2.4'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.thefinestartist:finestwebview:1.2.7'
    compile 'com.google.firebase:firebase-messaging:10.0.1'
    compile 'com.google.android.gms:play-services-maps:10.0.1'
    compile 'com.google.android.gms:play-services-places:10.0.1'
    testCompile 'junit:junit:4.12'
}

apply plugin: 'com.google.gms.google-services'

2 个答案:

答案 0 :(得分:2)

将org.json排除在框架中已经可用。

 compile('com.afollestad:bridge:5.1.2') {
        exclude group: 'org.json', module: 'json'
    }

答案 1 :(得分:0)

您的项目有org.json:json:20160810工件(直接注入或间接注释(如其他工件的提供者))但无法从本地/远程存储库中找到。

确保您的项目存储库

repositories {
    mavenCentral()
    jcenter({url "http://jcenter.bintray.com/"})
}

希望您已连接到互联网,以便可以从远程仓库找到:

你去文件>设置> Gradle查看“离线工作”收件箱,如果已选中,请取消选中并尝试再次同步。