当我使用android volley将数据插入服务器数据库时,显示错误无法解析符号R.
这是我在build.gradle(Module:app)中的依赖项,其中我只使用了一行代码
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.1.0'
testCompile 'junit:junit:4.12'
compile 'com.mcxiaoke.volley:library:1.0.19'}/*This line*/
并且在gradle运行后显示错误。 无法解析符号R。
答案 0 :(得分:0)
包含此compile 'com.android.volley:volley:1.0.0'
。它应该有用。
试试这个
compile 'com.mcxiaoke.volley:library-aar:1.0.0'