码迷,mamicode.com
首页 > 移动开发 > 详细

Android-AndroidStudio莫名其妙的错误-finished with non-zero exit value 1

时间:2019-01-02 12:44:06      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:can   add   roi   ring   字符   千万   www   锤子   with   

上一篇博客,Android-AndroidStudio莫名其妙的错误-finished with non-zero exit value 1,解决了由于 string.xml 字符导致的;

而这篇博客是com.android.tools.build:gradle:xxxxxx原因导致的

 

点击这个锤子??,就会报以下错误:

技术分享图片

 一旦出现这种错误,说那个 style no resource found 找不到,都是瞎扯蛋,根本就不是所谓的资源找不到,在瞎搞

技术分享图片

 

然后点击Build APK

技术分享图片

 

点击Build APK后,是另外一个错误:

技术分享图片

 

出现这个错误后,千万不要点击,否则就是火上浇油,更加乱

 

这个系列错误的原因是:APP/build.gradle/com.android.tools.build:gradle: 版本号不正确导致的

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:配置正确的版本号‘
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

Android-AndroidStudio莫名其妙的错误-finished with non-zero exit value 1

标签:can   add   roi   ring   字符   千万   www   锤子   with   

原文地址:https://www.cnblogs.com/android-deli/p/10207168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!