我想更改我的项目和模块的名称。但如果我试图重命名他们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'

当前回答

只需从android Manifest中找到名称“android:label="AppName"”。 只需重命名标签名称(例如:“AppName”这里)所有这样的android:标签在AndroidManifest.xml。省省吧!当你运行应用程序时,你会看到新的名称

其他回答

以下是我在Android Studio Beta(0.8.14)中所做的事情

Changed the package name manually in the manifest file Navigated to build -> source -> r -> release and drilled down until I found R.java Selected the file and pressed F6 to rename Then from the Build menu selected Make Project Clicked the first error and pressed Shift+F6 on the package name and renamed which updated all my source files Selected my project name in Android Studio, right clicked -> Refactor -> Rename and changed the name there too. Next went to app -> build.gradle and updated my applicationId Navigate to .idea -> .name file and rename your Android Studio project in there too Just to clean up I deleted the old package folder inside build -> source -> r -> release

和vola,我的包名称现在已经更改并成功构建。

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

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

关闭android studio,在文件资源管理器中重命名。iml文件 就是这样

对我有用的是:

转到

setting.gradle

更改其中的名称。 转到你想要更改并重构的应用根文件夹——>重命名它。 关闭android studio。 浏览到文件夹并更改名称 重新启动android studio。 做gradle同步。

这样就完成了!

我只是查了下载货单,改了改 android: label = "…" 到应用程序的名称。一旦Id改变了这个,标题和实际的应用程序名称就变成了这个:)