相关疑难解决方法(0)

AndroidStudio:无法同步安装构建工具

大约几个小时就对这个错误感到疯狂.

错误是:

failed to find Build Tools revision 23.0.0 rc1
Run Code Online (Sandbox Code Playgroud)

但我想要全部更新(也是发布候选人!)

这是形象:谢谢.在此输入图像描述

android build android-layout

45
推荐指数
4
解决办法
14万
查看次数

谷歌播放服务错误

我得到以下错误

Error:(1, 1) A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in C:\Users\TARUN\Desktop\GingerBuds\gradle\wrapper\gradle-wrapper.properties to gradle-2.10-all.zip
Run Code Online (Sandbox Code Playgroud)

然后我改变了上面的gradle路径,然后发生了以下问题,

我正在构建我的项目时遇到此异常.我重建并清理了项目并更新了google-play-services,然后我也遇到了错误.任何人都可以帮我解决这个问题.

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
java.io.FileNotFoundException: C:\Users\TARUN\Desktop\Gingerbuds\app\build\intermediates\exploded-aar\com.google.android.gms\play-services\8.4.0\jars\classes.jar (The system cannot find the path specified)
Run Code Online (Sandbox Code Playgroud)

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.kitchenvilla.gingerbuds"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 24
        versionName "1.2.2"
    }
    buildTypes { …
Run Code Online (Sandbox Code Playgroud)

android google-play-services

5
推荐指数
2
解决办法
6405
查看次数