您需要使用不同的包名称,因为 "com.example" 受到限制

You need to use a different package name because "com.example" is restricted

我已经在这里找到了很多关于这个问题的话题,但是 none 对我有用。

我正在使用 Android Studio 2.1.2,我仍然拥有 com.example 域名。在清单或任何其他文件中更改它会导致出现大量错误,而我的 build.gradle 仅显示:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.1.2'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

有人可以给我一些建议吗,因为我已经在这个应用程序上花了很多时间了?提前致谢:-)

您在问题中显示的是顶级 build.gradle

打开应用级别 build.gradle(在 app 文件夹内)并根据 applciationId

更改包名称

您不需要在代码中的任何地方更改包名称。只需在此处更改它,就会使用提供的包名称生成 apk,而不管 src 文件夹中的包如何命名。