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

当前回答

改变下面的事情对我有用。 设置。gradle-> rootProject.name='MyEvinApp'更改rootProject.name将android studio作为项目名称

其他回答

用Alt+1进入[工具窗口\项目],改变这个窗口左上角的级别为项目(另外两个是Packages和Android),然后你可以用Shift+F6重命名项目名称。输入新名称并按OK。

如果你只是想改变系统中出现的应用程序名称,你可以修改manifest.xml中的android:title。

以下是它在几秒钟内的变化…… 在你的manifest。xml中 找到“android: label = " 在它前面输入你的新名字" 例如:android:label="我的新名字"

它完成了!不客气!)

您可以在设置中尝试类似的操作。gradle文件:

rootProject.name = "YOUR_PROJECT_NAME"

重新启动Android Studio后,它也将改变标题栏中的文本为YOUR_PROJECT_NAME。

在Android Studio 2.2 RC2上测试

首先进入values文件夹 然后转到字符串文件夹 查找app_name 在字符串Tag中更改应用程序的名称 完成了

以下是我在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,我的包名称现在已经更改并成功构建。