我尝试从 Android Studio 1.5.1 中的示例构建 nativeActivity 代码,但出现此错误:
Error:Unknown host 'jcenter.bintray.com'. You may need to adjust the proxy settings in Gradle.
Enable Gradle 'offline mode' and sync
Learn about configuring HTTP proxies in Gradle</a>
我没有发现项目没有使用(com.android.tools.build:gradle-experimental:0.4.0')
来自 android git hub 的所有本机示例所使用的 Experimental Plugin 的问题。
我的项目:NativeActivity build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle-experimental:0.4.0'
}
}
allprojects {
repositories {
jcenter()
}
}