gpt4 book ai didi

android - 警告 :Dependency org. json:json:20090211 被忽略以进行调试,因为它可能与 Android 提供的内部版本冲突

转载 作者:行者123 更新时间:2023-12-03 05:01:33 25 4
gpt4 key购买 nike

运行 Android Studio 时出现以下错误。

Warning:Dependency org.json:json:20090211 is ignored for debug as it may be conflicting with the internal version provided by Android.



我的 build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.1.0'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'org.java-websocket:Java-WebSocket:1.3.0'
compile 'com.github.nkzawa:engine.io-client:0.6.0'
compile 'com.github.nkzawa:socket.io-client:0.6.0'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile files('libs/json_simple.jar')
compile files('libs/pushy-1.0.7.jar')
compile 'com.facebook.android:facebook-android-sdk:4.7.0'
}

我尝试排除 org.json,它不起作用。
exclude group:'org.json',module:'json'

但是当我删除 socket.io-client、engine.io-client 和 facebook sdk

android studio 在没有警告的情况下运行。

请告诉我哪里错了,

谢谢你。

最佳答案

再试一次。它肯定会奏效。

您可以通过在 build.gradle 中添加以下行来从模块中排除 json 依赖项

我从这个 改变了

compile 'com.github.nkzawa:socket.io-client:0.4.1'


compile ('com.github.nkzawa:socket.io-client:0.4.1'){
exclude group: 'org.json', module: 'json'
}

这对我有用:不再警告:)

关于android - 警告 :Dependency org. json:json:20090211 被忽略以进行调试,因为它可能与 Android 提供的内部版本冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33497347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com