└─# gradle wrapper clean build --gradle-version 8.0.2 --refresh-dendencies
openjdk version "17.0.6" 2023-01-17
OpenJDK Runtime Environment (build 17.0.6+10-Debian-1)
OpenJDK 64-Bit Server VM (build 17.0.6+10-Debian-1, mixed mode, sharing)
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'Sabia'.
> Could not resolve all files for configuration ':classpath'.
> Could not find com.android.tools.build:gradle:8.0.2.
Searched in the following locations:
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.pom
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.jar
https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.pom
https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.jar
https://jitpack.io/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.pom
https://jitpack.io/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.jar
https://maven.google.com/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.pom
https://maven.google.com/com/android/tools/build/gradle/8.0.2/gradle-8.0.2.jar
Required by:
project :
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s
app level build.gradle
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-parcelize'
id 'com.google.gms.google-services'
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.example.myapp"
minSdk 23
targetSdk 32
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0-alpha02'
implementation 'com.google.android.libraries.maps:maps:3.3.1'
implementation 'com.google.maps.android:maps-ktx:3.3.1'
implementation 'com.google.android.gms:play-services-location:21.0.1'
implementation 'com.github.bumptech.glide:glide:4.15.0'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'com.google.maps.android:maps-utils-ktx:3.3.1'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.firebase:firebase-messaging:23.1.2'
implementation 'com.google.firebase:firebase-crashlytics:18.3.5'
implementation 'com.google.firebase:firebase-analytics-ktx:21.2.0'
implementation 'com.google.firebase:firebase-perf:20.3.1'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
}
project level build.gradle
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10'
classpath 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.0'
classpath 'com.google.gms:google-services:4.3.15'
}
}
Been stuck on this for a few days. It was building before. Somehow it broke. I can’t fix it.
output of ./gradlew --version
------------------------------------------------------------
Gradle 8.0.1
------------------------------------------------------------
Build time: 2023-02-17 20:09:48 UTC
Revision: 68959bf76cef4d28c678f2e2085ee84e8647b77a
Kotlin: 1.8.10
Groovy: 3.0.13
Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021
JVM: 17.0.6 (Debian 17.0.6+10-Debian-1)
OS: Linux 6.0.0-kali3-amd64 amd64
doesn’t work if I put gradle version as 8.0.1 either
Could not find com.android.tools.build:gradle:8.0.1.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.0.1/gradle-8.0.1.pom
- https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/8.0.1/gradle-8.0.1.pom
- https://jitpack.io/com/android/tools/build/gradle/8.0.1/gradle-8.0.1.pom
- https://maven.google.com/com/android/tools/build/gradle/8.0.1/gradle-8.0.1.pom
Required by:
project :
Add google Maven repository and sync project
Open File