2016-07-26 80 views
1

我是Gradle和Android Studio的新手,我一直在努力將https://android.googlesource.com/platform/packages/apps/下的任何項目導入AS,併成功在我的dev設備上運行它。我試圖讓Launcher3運行,我得到各種不同的錯誤。我想我錯過了關於如何配置工作室和Gradle的一些主要部分?如何將googlesource項目導入到Android Studio?

什麼是正確的程序? 我安裝了最新的Gradle和AS。從Git克隆項目。導入到AS,然後我得到像這樣的錯誤或該版本的Gradle是必需的,主要活動不能找到,gradle插件無法找到等嘗試更改配置文件中的Gradle版本。嘗試設置我的本地搖籃下載生成設置等

乾杯, 哈米德

更新: 我改變了版本2.1.2這裏:

dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.2' 
     classpath 'com.google.protobuf:protobuf-gradle-plugin:2.1.2' 
    } 

,目前我得到的錯誤:

Error:Could not find com.google.protobuf:protobuf-gradle-plugin:2.1.2. 
Searched in the following locations: 
    file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/google/protobuf/protobuf-gradle-plugin/2.1.2/protobuf-gradle-plugin-2.1.2.pom 
    file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/google/protobuf/protobuf-gradle-plugin/2.1.2/protobuf-gradle-plugin-2.1.2.jar 
    https://repo1.maven.org/maven2/com/google/protobuf/protobuf-gradle-plugin/2.1.2/protobuf-gradle-plugin-2.1.2.pom 
    https://repo1.maven.org/maven2/com/google/protobuf/protobuf-gradle-plugin/2.1.2/protobuf-gradle-plugin-2.1.2.jar 
Required by: 
    :Launcher3:unspecified 

回答

0

我想你可能會混淆protobuf-gradle-plugin版本的構建工具版本。 最新的protobuf-gradle-plugin版本是0.8.2,如here所示。

嘗試將其更改爲: 類路徑 'com.google.protobuf:protobuf的-gradle這個-插件:0.8.2'

相關問題