skip to Main Content

Android Studio – Error in Gradle project sync in Android studio after update to Android Studio Bumblebee 2021.1.1

After updating Android Studio to version 2021.1.1 (Android Studio Bumblebee), I'm getting the following error on trying to sync gradle files ModelCache.safeGet(androidProjectResult.androidProject::getNdkVersion, "") must not be null This is the further stack trace om.intellij.openapi.externalSystem.model.ExternalSystemException: ModelCache.safeGet(androidProjectResult.androidProject::getNdkVersion, "") must not be null…

VIEW QUESTION

Android Studio – Gradle build fails on "lint isAbortOnError" after updating to com.android.tools.build:gradle:7.1.0

For my android app i'm using a build.gradle.kts file containing this code: android { ... lint { isAbortOnError = false } } For my current configuration, everything works fine: Android Studio Bumble Bee 2021.1.1 com.android.tools.build:gradle:7.0.4 distributionUrl=https://services.gradle.org/distributions/gradle-7.3.3-bin.zip Android Studio suggested an…

VIEW QUESTION

Android Studio – Build.Gradle Error – A problem occurred evaluating project ':app'

I am getting the below error when I am trying to run my app. A problem occurred evaluating project ':app'. Supplied String module notation 'commons-io:commonCould not resolve all dependencies for configuration ':app:debugRuntimeClasspath'.s-io:2.6' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:javadoc'. Try: Run…

VIEW QUESTION

Can't run gradle wrapper with docker build

I have this small build: FROM eclipse-temurin:17-jdk as build-java COPY java-project /root/project WORKDIR /root/project RUN chmod +x ./gradlew RUN ls RUN ./gradlew ... #9 [build-build-java 5/6] RUN ls #9 sha256:2d05b1e31ea4eaa8a9343b4f48fadcf7351b9d55dcc9c27e572d7bb32c4d723c #9 0.194 build #9 0.194 build.gradle #9 0.194 docker-compose.yml #9…

VIEW QUESTION
Back To Top
Search