我想更改我的项目和模块的名称。但如果我试图重命名他们Android工作室通知我一些错误… 例:我想把名字从“MyApplication”改为“AndroidApp”,如下图所示。 在第一个矩形中,我想改变它:

AndroidApp (“G:...\Android\AndroidApp”).

在第二个矩形中,我想改变它:

AndroidApp [AndroidApp-AndroidApp]

编辑:这是日志:

Gradle:项目“AndroidApp”在根项目“MyApplicationProject”中找不到。

build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.0.1"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 16
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
}

settings.gradle:

include ':MyApplication'

当前回答

对我有用的是,

去Build.gradle 更改ApplicationId并同步项目。

右键单击您的项目>重命名>重命名包。

运行你的应用。

希望这对我有用

其他回答

在2020年11月,解决这个问题的一个非常快速的方法是以下步骤

hit the shift key twice, a pop up will show search for a file named "settings.gradle" when it opens change the rootProject.name = "Old-name" to rootProject.name = "new name" then sync. hit the shift key twice, a pop up will show search for a file named "string.xml", when it opens change <string "app_name">old-name to <string "app_name">new-name close android studio locate androidStudioProject directory on your machine, open it and find the project by its old name, rename it to the new name. open Android Studio goto File > Open > "new name". open it from there.

目前正在Android Studio 4.1.1上运行

尝试更改AndroidManifest.xml中的android:label,然后重新安装/重新运行app:

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

您可以轻松地使用refactor重命名。

写,单击项目根文件夹,然后单击重构。 然后点击重命名,会弹出一个窗口,你可以在那里给出新的名字。

您可以更改文件“.idea/.name”标题栏中显示的名称。

重命名项目:

折射并重命名顶级目录 关闭Android Studio 再次导入整个项目

修改包名称。

最简单和最快的解决方案在这里:https://stackoverflow.com/a/35057550/4908798