khttp
khttp copied to clipboard
Warnings: Dependency org.json:json:20150729
Warning:WARNING: Dependency org.json:json:20150729 is ignored for debug as it may be conflicting with the internal version provided by Android.
Warning:WARNING: Dependency org.json:json:20150729 is ignored for release as it may be conflicting with the internal version provided by Android.
Information:BUILD SUCCESSFUL
I'm having this as well, except my gradle fails to build, not getting a warning.
Using Android Studio 3 canary release 3. Have tried khttp 0.1.0 and master-SNAPSHOT, both fail
Try the following?
compile ('com.github.jkcclemens:khttp:0.1.0') {
exclude group: 'org.json', module: 'json'
}
For future reference, the workaround that @andreasbhansen mentions is required if you want to build a release version of your app.
What's the status of fixing this issue?