我将Android Studio更新到最后一个版本(3.1 Canary 8),并强制将com.android.tools.build:gradle更新到3.1.0-alpha08版本,但同步项目我收到此错误:
naming
我搜索过但未找到解决方案,有人可以帮我解决这个问题吗?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean name="naming" class="com.acme.foo.MyNaming">
<property name="reservedNames" ref="reservedNames"/>
</bean>
</beans>
提前多多感谢。
更新:这是新的bukd.gradle(项目):
Could not find sdk-common.jar (com.android.tools:sdk-common:26.1.0-alpha08).
Searched in the following locations:
https://maven.google.com/com/android/tools/sdk-common/26.1.0-alpha08/sdk-common-26.1.0-alpha08.jar
答案 0 :(得分:34)
为了知识;)我根据官方文档的建议,通过在存储库块中的jcenter()上面添加google()来修复它:developer.android.com/studio/build/index.html
答案 1 :(得分:15)