gradle Android Studio :未找到“:app”的变体

iugsix8n  于 2023-10-19  发布在  Android
关注(0)|答案(1)|浏览(155)

我正在做我的最后一个项目,我想做的项目与android工作室,我真的是新的android工作室,我遇到了一个错误说没有找到':app'的变体我试图更改或下载另一个版本的SDK,但它解决不了任何问题
下面是build.gradle代码:

buildscript {

   repositories {

   google()  // Google's Maven repository

   mavenCentral()  // Maven Central repository

  }

   dependencies {
   
   classpath 'com.android.tools.build:gradle:4.2.1'

   classpath 'com.google.gms:google-services:4.3.15'

  }

}

allprojects {

   repositories {

   google()  // Google's Maven repository

   mavenCentral()  // Maven Central repository

 }

}

以下是app/build.gradle的代码:

plugins {
    id 'com.android.application'
    id 'com.google.gms.google-services'
}

android {
    namespace 'com.example.chatapp'
    compileSdk 33

    defaultConfig {
        applicationId "com.example.chatapp"
        minSdk 24
        targetSdk 33
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables {
            useSupportLibrary true
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildFeatures{
        viewBinding true
        compose true
    }
//    kotlinOptions {
//        jvmTarget = '1.8'
//    }
    composeOptions {
        kotlinCompilerExtensionVersion '1.3.2'
    }
    packagingOptions {
        resources {
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
        }
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.6.1'
    implementation 'com.google.android.material:material:1.8.0'
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
    implementation 'androidx.activity:activity-compose:1.5.1'
    implementation platform('androidx.compose:compose-bom:2022.10.00')
    implementation 'androidx.compose.ui:ui'
    implementation 'androidx.compose.ui:ui-graphics'
    implementation 'androidx.compose.ui:ui-tooling-preview'
    implementation 'androidx.compose.material3:material3'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
    implementation 'com.intuit.sdp:sdp-android:1.0.6'
    implementation 'com.intuit.ssp:ssp-android:1.0.6'
    implementation 'com.makeramen:roundedimageview:2.3.0'
    androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
    androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
    androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
    androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
    debugImplementation 'androidx.compose.ui:ui-tooling'
    debugImplementation 'androidx.compose.ui:ui-test-manifest'
}

下面是Settings.gradle的代码:

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
//    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
//    repositories {
//        google()
//        mavenCentral()
//    }
}
rootProject.name = "ChatApp"
include ':app'
wydwbb8l

wydwbb8l1#

解决方案:添加配置以解决“No Variants Found for ':app'”错误
**第一步:**打开Android Studio

启动Android Studio并打开您的项目。

**第二步:**Access Run/登录

点击顶部菜单中的“运行”。从菜单中选择“编辑菜单”。

**第三步:**添加新配置

在“运行/调试”窗口中,找到现有配置。由于错误与应用程序执行有关,因此请关注“应用程序”模块配置。单击左上角的“+”(添加配置)。从菜单中选择“Android App”。

**第四步:**配置新配置

在“常规”选项卡中:从“模块”选项卡中选择正确的“应用程序”模块。根据需要配置“部署”和“启动”选项。

**第五步:**申请并保存

点击右下方的“应用”进行保存。单击“确定”关闭窗口。

**第6步:**运行或删除

现在,运行或调试您的应用。在新添加的配置中使用绿色“运行”按钮(或热键)。此过程应解决Android Studio中的“No Variants Found for ':app'”错误。

相关问题