1

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 ハブのすべてのネイティブ サンプルで使用されているように、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()
    }
}
4

1 に答える 1

0

このパスを開くことができない場合

https://bintray.com/android/android-tools/com.android.tools.build.gradle-experimental/0.4.0/view#files/com/android/tools/build/gradle-experimental .

プロキシを使用して再試行してください。

  • freegate のようなプロキシを実行する

  • cmd タイプのルート パス プロジェクトgradlew -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=8580

于 2016-03-16T06:04:53.007 に答える