Problem z gradle w adroid studio

0

Witam wszystkich mam problem z gradle w android studio a mianowicie wrapper mam ustawiony 8.9 (wymagane) a gradle w kodzie 8.7.2.
problem polega na tym ze co bym nie zrobil przy sync with gradle wyskakuje blad

Plugin [id: 'com.android.application', version: '8.7.2', apply: false] 

czy ktos ma moze pomysl jak to rozwiazac ??

0

No wyskakuje Ci to, ale czy wtedy build i inne operacje nie działają? Może to po prostu nieszkodliwy notice.

0
Riddle napisał(a):

No wyskakuje Ci to, ale czy wtedy build i inne operacje nie działają? Może to po prostu nieszkodliwy notice.

w ogóle nie dziala nic projekt sie nie moze zsynchronizowac z gradle juz probowalem wszystkiego co znam i ciagle to samo

0
mattzey napisał(a):
Riddle napisał(a):

No wyskakuje Ci to, ale czy wtedy build i inne operacje nie działają? Może to po prostu nieszkodliwy notice.

w ogóle nie dziala nic projekt sie nie moze zsynchronizowac z gradle juz probowalem wszystkiego co znam i ciagle to samo

Pokaż cały output z gradle.

1
* What went wrong:
Plugin [id: 'com.android.application', version: '8.7.2', apply: false] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (could not resolve plugin artifact 'com.android.application:com.android.application.gradle.plugin:8.7.2')
  Searched in the following repositories:
    Gradle Central Plugin Repository
0
mattzey napisał(a):
* What went wrong:
Plugin [id: 'com.android.application', version: '8.7.2', apply: false] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (could not resolve plugin artifact 'com.android.application:com.android.application.gradle.plugin:8.7.2')
  Searched in the following repositories:
    Gradle Central Plugin Repository

To teraz jeszcze pokaż Twój skrypt .gradle. i jesteśmy w domu 😊

0
plugins {
    id("com.android.application") version "8.7.2" apply false
    id("com.android.library") version "8.7.2" apply false
    id("org.jetbrains.kotlin.android") version "2.0.20" apply false
}

buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:8.7.2")
        classpath("com.chaquo.python:gradle:11.0.0")

    }
}

w razie co moge podeslac gradle app setting i gradle z projekt

0
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()

    }
}
setting gradle
poniezej gradle z app:

plugins {
    id("com.android.application")
    id("org.jetbrains.kotlin.android")
    id("com.chaquo.python") version "11.0.0"
}

android {
    namespace = "com.example.glosowynotatnik"
    compileSdk = 34

    defaultConfig {
        applicationId = "com.example.glosowynotatnik"
        minSdk = 21
        targetSdk = 34
        versionCode = 1
        versionName = "1.0"

        ndk {
            abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
        }

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            isMinifyEnabled = false
            proguardFiles(
                getDefaultProguardFile("proguard-android-optimize.txt"),
                "proguard-rules.pro"
            )
        }
    }

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_11
        targetCompatibility = JavaVersion.VERSION_11
    }

    kotlinOptions {
        jvmTarget = "11"
    }

    buildFeatures {
        compose = true
    }
}

dependencies {
    implementation("androidx.core:core-ktx:1.15.0")
    implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.7")
    implementation("androidx.activity:activity-compose:1.9.3")
    implementation(platform("androidx.compose:compose-bom:2024.11.00"))
    implementation("androidx.compose.ui:ui")
    implementation("androidx.compose.ui:ui-graphics")
    implementation("androidx.compose.ui:ui-tooling-preview")
    implementation("androidx.compose.material3:material3")
    testImplementation("junit:junit:4.13.2")
    androidTestImplementation("androidx.test.ext:junit:1.2.1")
    androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
    androidTestImplementation(platform("androidx.compose:compose-bom:2024.11.00"))
    androidTestImplementation("androidx.compose.ui:ui-test-junit4")
    debugImplementation("androidx.compose.ui:ui-tooling")
    debugImplementation("androidx.compose.ui:ui-test-manifest")
}

0

@mattzey Robisz sync z IDE (np. IntelliJ) czy z linii poleceń?

0

z sync IDE po lini tez probowalem i ciagle ten sam blad

Zarejestruj się i dołącz do największej społeczności programistów w Polsce.

Otrzymaj wsparcie, dziel się wiedzą i rozwijaj swoje umiejętności z najlepszymi.