Build errors after Android Studio 3.2.1 upgrade

前端 未结 9 1318
我在风中等你
我在风中等你 2020-11-29 00:24

I am building a sample project from Udacity. This was working fine till now, but after upgrading to Android Studio 3.2.1, I am facing the build error below.

Gradle v

相关标签:
9条回答
  • 2020-11-29 00:58

    add google() on your build script > repositories add google on allprojects > repositories

    use implementation as replacement of compile keyword, also on your filetree.

    EX.

    dependencies {
        implementation fileTree(include: ['*.jar'], dir: 'libs')
        androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
            exclude group: 'com.android.support', module: 'support-annotations'
        })
    
        implementation 'com.android.support:appcompat-v7:25.3.1'
        implementation 'com.android.support:design:25.3.1'
        implementation 'com.android.support.constraint:constraint-layout:1.0.2'
        implementation 'com.android.support:support-v4:25.3.1'
    
    0 讨论(0)
  • 2020-11-29 00:59

    The project gradle version is pretty old:

    classpath 'com.android.tools.build:gradle:2.2.3'
    

    And you are using Android Studio v3.2.1 so, update the gradle:

    classpath 'com.android.tools.build:gradle:3.2.0' // or 3.2.1 maybe
    

    Also, as you can see, it was looking for some packages in :

    file:/C:/Users/sandeepk2/AppData/Local/Android/Sdk/extras/m2repository/com/android/tools/build/aapt2/3.2.1-4818971/aapt2-3.2.1-4818971.pom
    

    Which means you probably forgot to add google() as the top level repository. Just add google()

    to your repositories in your root build.gradle.

    0 讨论(0)
  • 2020-11-29 00:59

    Yeah, as d4rkcon said download https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/3.2.1-4818971/aapt2-3.2.1-4818971-windows.jar But you can do simplier - just put this file in directory where Andoid Studio is trying to find it. If you don't have directories like /tools/build/aapt2/3.2.1-4818971/ in AndroidSDK folder just create them and then put aapt2-3.2.1-4818971-windows.jar file in.

    0 讨论(0)
  • 2020-11-29 01:08

    For Android Studio 3.6.3 update : just adding google maven tag in buildscript and all projects repositories in build.gradle file of project file solves the issue.

    buildscript {
        repositories {
            jcenter()
            maven {
                url 'https://maven.google.com/'
                name 'Google'
            }
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.6.3'
    
        }
    }
    
    allprojects {
        repositories {
            jcenter()
            maven {
                url 'https://maven.google.com/'
                name 'Google'
            }
        }
    }
    
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    
    0 讨论(0)
  • 2020-11-29 01:12

    To get this solved

    Firstly download the missing Jar file from the link below. I see you are missing version 3.2.1-4818971

    https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/3.2.1-4818971/aapt2-3.2.1-4818971-windows.jar

    Switch your folder structure from Android to Project.

    Now navigate to the libs folder inside the app - build folder. (If the libs folder does not exist, you can create it by right clicking on the app folder - select New - select Directory.)

    Paste the downloaded.jar file inside libs folder. Right click on the jar file and at the bottom click on Add as library. This will take care of adding implementation files('libs/library_name.jar') in build.gradle [You don't have to manually enter this in your build file].

    Everything should be okay once you sync after doing the above. Here is the source link to this solution: https://developer.android.com/studio/command-line/aapt2#download_aapt2

    Let me know if you run into any other issues whilst doing the above.

    0 讨论(0)
  • 2020-11-29 01:13

    For Android Studio 3.2.1 update

    Just add google() in root level build.gradle

    buildscript {
        repositories {
            google()   //  <--here
            jcenter()
        }
     }
    
    allprojects {
        repositories {
            google()   //  <-- here
            jcenter()
        }
    }
    

    and see the magic - error is gone.

    0 讨论(0)
提交回复
热议问题