enter image description here Android Studio中的Gradle错误。 它说:错误:无法解决:com.android.support:support-v4:23.3.0 添加Google Maven存储库并同步项目 在项目结构对话框中显示 受影响的模块:应用
错误:无法解决:com.android.support:design:23.3.0 添加Google Maven存储库并同步项目 在项目结构对话框中显示 受影响的模块:应用
答案 0 :(得分:1)
在build.gradel文件中添加Maven
const data = [{"Month":"Value Transactions"},{"6":"0.70"},{"7":"10.92"},{"8":"5.60"},{"9":"1.70"}];
// If the parsed value is not a number return the value
// otherwise coerce it to an number
const getValue = (v) => Number.isNaN(parseFloat(v)) ? v : +v;
// `map` over the array objects
const out = data.map(obj => {
// Extract the key and values from each object
const [[ key, val ]] = Object.entries(obj);
// Return an array with the correct values/types
return [ getValue(key), getValue(val) ];
});
console.log(out);
再次同步代码。
答案 1 :(得分:0)
现在可以通过Google的Maven
存储库访问支持库。
第1步:打开项目的build.gradle
文件。
第2步:确保存储库部分包含maven
部分,其中包含https://maven.google.com url
。
allprojects {
repositories {
google() // here
jcenter()
maven { url 'https://maven.google.com' }
}
}
步骤3::将支持库添加到“依赖项”部分。例如,要添加v4 core-utils库,请添加以下行:
dependencies {
...
implementation"com.android.support:support-core-utils:23.0.0"
}
答案 2 :(得分:0)
在build.gradle中,您必须添加:
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}
答案 3 :(得分:0)
Kotlin-DSL版本:
allprojects {
repositories {
jcenter()
maven(url= "https://maven.google.com")
}
}