当前位置: 首页 > 知识库问答 >
问题:

id为“com.android”的插件。应用程序“未找到”问题

安聪
2023-03-14

我正在使用android studio 3.2.1版本。我在id为“com.android”的插件中遇到错误。未找到应用程序“”。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "ru.ifsoft.chat"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 45
        versionName '3.9'
        multiDexEnabled true
    }
    dexOptions {

        jumboMode true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }

    productFlavors {
    }
}

    dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.mcxiaoke.volley:library:1.0.19'
    implementation 'com.github.chrisbanes.photoview:library:1.2.3'
    implementation 'com.facebook.android:facebook-android-sdk:4.39.0'
    implementation 'com.pkmmte.view:circularimageview:1.1'
    implementation 'com.melnykov:floatingactionbutton:1.3.0'
    implementation 'com.squareup.okhttp:okhttp:2.5.0'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:animated-vector-drawable:27.1.1'
    implementation 'com.android.support:mediarouter-v7:27.1.1'
    implementation 'com.android.support:customtabs:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.balysv:material-ripple:1.0.2'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.google.firebase:firebase-core:16.0.6'
    implementation 'com.google.firebase:firebase-ads:17.1.2'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-analytics:16.0.6'
    implementation 'com.google.android.gms:play-services-gcm:16.0.0'
    implementation 'com.google.android.gms:play-services-ads:17.1.2'
}

apply plugin: 'com.google.gms.google-services'

共有1个答案

卫诚
2023-03-14

可能是您在项目级build.gradle中放错了一个花括号。

    buildscript {
        ext.kotlin_version = '1.3.50'
        repositories {
            google()
                maven {url 'https://maven.fabric.io/public'}
            jcenter()

            dependencies {
                classpath 'com.android.tools.build:gradle:3.5.2'
                classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
                classpath 'com.google.gms:google-services:4.3.3'
                classpath 'com.google.firebase:perf-plugin:1.3.1'
                classpath 'io.fabric.tools:gradle:1.31.2'
            }
        }
    } //this is the important bracket, because it closes the buildscript

    allprojects {
        repositories {
            google()
            jcenter()
        }
    }
    [...]

如果这不起作用,请尝试在文件菜单中重新启动使缓存无效。

我希望我是在帮忙

 类似资料: