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

更新:这是2013年的过时响应,仅适用于v2.2.2及以下版本。


右键单击根项目目录 选择“重构->重命名” 选择重命名项目并在那里更改名称。 选择重命名模块,并在那里更改它。如果你得到一个消息说模块名称已经改变,那很好。 现在再次右键单击项目根文件夹并选择Open Module Settings。 在Modules部分下,删除与旧项目名称相关联的任何文件夹。 应用设置并点击OK。 重新启动Android Studio。


首先,我强烈建议升级到最新的Android Studio(目前为0.3.7);有大量的错误修复。

您遇到了bug https://code.google.com/p/android/issues/detail?id=57692,即如果您试图使用UI重命名模块或项目,它不会更新构建文件。对不起,它现在真的坏了。我建议直接在文件系统中更改目录名,并更新您的设置。Gradle文件来反映这些变化。你在磁盘上的项目应该看起来像这样(比这里显示的文件更多):

projectFolder
|--settings.gradle
|--applicationModuleFolder
|  |--build.gradle
|  |--src

它使用projectFolder的名称作为项目名称,并使用applicationModuleFolder作为您的Android应用程序所在的模块名称(分别是屏幕截图中的上方和下方轮廓框)。我认为你现在的项目设置方式,它们都有相同的名称;如果你喜欢,你可以将它们重命名为相同的新名称,或者你可以给它们不同的名称;没关系。

重命名后,编辑您的设置。gradle文件;它看起来像这样:

include ':applicationModuleFolder'

在那里把名字也改成你的新名字。一旦完成这些更改,点击工具栏中的“用Gradle文件同步项目”按钮(如果你运行的是一个非常旧的Android Studio版本,它可能没有这个按钮,所以你可以关闭项目并在这种情况下重新打开它),它应该会接收到更改。


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


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


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

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


尝试更改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 重命名项目根目录名称 Open Android Studio 打开项目 清洁项目

如果你的设置。Gradle包含下面的行,要么删除它,要么将其更新为新名称。

rootProject.name = 'Your project name'

编辑: 工作在所有版本!最后一次测试:2022年6月Android Studio黑猩猩。


只要去res>values>strings.xml。一行说 Somethig-your名字

<string name="app_name">Somethig-your name</string>

把你原来的名字换成

 <string name="app_name">Your Name</string>

对我有用的是:

转到

setting.gradle

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

这样就完成了!


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

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


对我有用的是,

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

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

运行你的应用。

希望这对我有用


更新:

这个答案更好。

旧的回答: 1. 右击你的

包名和重构->重命名…

当被问到是要重命名目录还是重命名包时,选择“重命名包”

现在在Finder中,手动重命名你的根文件夹(/app文件夹的父文件夹)

在Android Studio中用新的文件夹名称重新打开项目 Cmd + Shift + f为你的旧名称在Android Studio的任何实例,并将它们全部更改为新名称。 在build.gradle中更改applicationId

奖金轮:

如果.gitignore文件位于项目的根目录,则可能需要更新它。请注意,在完成此操作后交换分支时,您可能会在工作更改中看到一堆文件,但不用担心,在您将重新命名的分支与更新的.gitignore合并后,它们应该会消失。不要手动删除这些,因为这会导致Android Studio出现问题。 在Finder中删除旧的根文件夹


更新2017年7月:测试和工作


打开项目文件夹(你可以通过Android Studio打开它) 现在关闭Android Studio 更改yourOldProjectName。我有了一个新名字 将父文件夹重命名为相同的新名称。 重新打开Android Studio—> File—>打开—>路径到你的重命名。im


关闭Android Studio。 重命名项目根目录的文件夹。例如,将“MyApplication”更改为“Myblablabla”。 删除'。想法的文件夹。 打开Android Studio,导入更新后的项目。


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

它完成了!不客气!)


只需在build.gradle中更改应用程序id

applicationId "yourpackageName"

更改应用程序标签,在manifest中

<application 
android:label="@string/app_name" 
... />

它为我工作的方式,以取代我的项目的旧名称为一个新名称(在我的代码库中无处不在)如下:

Close Android Studio. Rename the root folder of your project. Open Android Studio. It will not find the old project, so you must import it again. This step will generate the configuration again (no need to touch your .idea files manually), including a new .iml file with the new project name. Afterwards you can delete the old .iml file if you want. Once the renamed project is imported in Android Studio you need to rename your source packages to use the new project name in case you used the old project name as part of the package path.

注意:这适用于Android Studio 2.1.2


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


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


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

rootProject.name = "YOUR_PROJECT_NAME"

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

在Android Studio 2.2 RC2上测试


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


在res>values>strings.xml中更改名称将在安装后更改应用程序菜单中显示的应用程序名称 重命名android studio项目文件夹(当android studio关闭时)可能会满足许多开发者


我在Android Studio 2.3中使用了以下指示(第一次)。它们包括在Android Studio中创建一个新应用,然后关闭它,在文件资源管理器和文本编辑器中完成所有工作。

重构和重命名一个Android Studio项目或应用程序

注意:需要一个文本编辑器,它可以在目录结构中执行全局搜索和替换。说明书上推荐了Sublime Text,我很容易安装和运行。

它生成了一个新的应用程序,安装和运行在现有的应用程序旁边。它仍然有相同的屏幕名,这是通过在清单中编辑Android:label="MyNewApp"来修复的。


在Android Studio中更改应用程序名称:

在Android studio中关闭项目,并从启动器的快速启动侧删除它(名称旁边应该是一个mini)。 关闭Android Studio。 进入你的应用程序文件所在的位置,重命名它(在我的文档通常)。 重新启动Android Studio,选择添加新项目,并导航到重命名的文件夹。

更改应用程序启动器的标签/应用程序的实际名称:

进入初始文件夹(app) 进入舱单 进入AndroidManifest.xml。 重命名android:label= _____为任何你想重命名你的应用程序

例如:android:label=“开发者门户”。

单击“保存全部”。


你好罗伯托AV96,

我在这里提供了三个解决方案。选择一个适合你的问题。

如果您只想更改项目根文件夹的名称 名称,你可以从资源管理器:

Just close the project in the studio, after copying path to the project. Close the project from the main welcome screen. go to the file explorer, copy this path on the address bar, and go to the folder. Rename the folder that is the root of the project. Rename the iml file in this root folder to the name of the folder. That is if the project root folder's name was say demo_project, there will be demo_project.iml file inside it. If you changed this folder's name to say my_project, then you have to change the name of the iml file inside it to my_project.iml.

实际上,Studio中的重构选项也可以做到这一点。

如果要更改应用程序文件夹的名称,则在 项目的根文件夹,在资源管理器中执行同样的操作:

将app文件夹重命名为您想要的名称。

[信息:为这个项目生成的APK文件将 获取相同的名字,后跟表示 你构建签名APK的模式,即调试或 释放。签名的APK可以在它各自的调试或发布文件夹中找到。unsigned APK位于build目录的output文件夹中,所有的build, debug和release文件夹都在主app文件夹中,或者你将这个文件夹重命名为]的文件夹中。

假设你给这个文件夹取的名字是my_project_app,打开这个文件夹并将app.iml重命名为my_project_app。我在项目的名字后面。 现在转到项目的根文件夹,并找到设置。gradle文件。

这个文件的内容是你在项目中包含的模块文件夹的名称,目前只有一个模块,那就是主模块:

include ':app'

这对应于app文件夹的旧名称。

因此你必须做出以下改变:

include ':my_project_app'

就是这样。现在您可以在工作室中重新加载项目,并检查生成的APK的名称。

如果要重命名包名,请输入com.first.myproject to com.alpha.myproject:

Again go to the explorer: Inside the hierarchy of folders in the src-->main-->java, your package is com-->first-->myproject. Make sure your Studio is closed. Rename the second folder first to alpha. Open the Studio now. Choose Replace in Path in the first package inside the java folder, in the Android mode of the left panel tree. This one is the package that you changed from the Explorer, that is: com.alpha.myproject instead of com.first.myproject. Change the instances of the string import com.first.myproject; in files to import com.alpha.myproject;. Check for just the string occurrence of com.first.myproject, and safely change it to com.alpha.myproject. Check for just the string occurrence of com.first.myproject, in build.gradle inside your main app module, and safely change it to com.alpha.myproject. Do not forget that this package name is also the signature and identity to your application project. If you have already published your application in the play store, then you have to setup a different project com.alpha.myproject afresh and unpublish com.first.myproject, affecting lots of users:- you have to broadcast to the users using push notification, in the latest version of old existing APK, that the new Application version will be released with different name, and you have to publish this new APK, restarting from version name 1.0. This destroys objective of having the application slot at play-store for the old APK. So you have to consult your client that what should be the name of their application package before starting the project. Don't forget that the signing and obfuscation of the application is equally important. You can issue command inside Studio to remove unnecessary resources from your project. You can manually deal with all the warnings that LINT produces.

快乐编码和快乐应用程序发布。: -)


重命名项目:

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

修改包名称。

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


对我来说,以下工作:

关闭Android Studio。 将项目的文件夹从MyApplication重命名为NewProjectName 重命名MyApplication。iml文件到NewProjectName.iml 在NewProjectName。iml将每个MyApplication文本更改为NewProjectName 在.idea/modules.xml中将每个MyApplication文本更改为NewProjectName 在.idea/workspace.xml中将每个MyApplication文本更改为NewProjectName 启动Android Studio。 所有之前的设置保持不变,“app”模块也一样!


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


->修改项目名称<-


通过关闭Android Studio更改项目名称,进入项目文件夹,重命名它…



删除。idea文件夹和。iml文件。(要显示隐藏的文件夹,按Cmd + Shift +。(点))。



打开设置。使用文本编辑器(如VSCode)编辑gradle文件,并将rootProject.name更改为您的新项目名称。



完成了!项目名称已更改!只要用Android Studio打开你的项目,Gradle就会再次同步。


视频教程:https://youtu.be/7aQjiae2doU

将名称重构为com.example。[NewFileName] in path: 应用java com . example。[OldFileName] > >


进入strings.xml,在路径中修改代码为<string name="app_name " >[NewFileName]</string>: 应用程序> res >值> strings.xml


去建造。gradle (Module: app),并将代码更改为applicationId“com.example”。[NewFileName] "路径: >建立Gradle脚本。gradle(模块:app)


进入设置。gradle(项目设置)并将代码更改为rootProject.name='[NewFileName]' >建立Gradle脚本。gradle(项目设置)


现在按下同步提示


在Android Studio外将文件夹重命名为[NewFileName]


重新打开你的项目并在路径下重建项目: 构建>重建项目



这对我来说没问题

Change Following.

步骤1:确保ApplicationId和PackageName相同。 例子:

  android {
  defaultConfig {
                     applicationId "com.example.myapplication"
                 }
       }
 and package name the same. package="com.example.myapplication"

步骤2 删除iml文件在我的情况下:

  Go To Project> >C:\Users\ashif\Documents\MyApplication  .iml file // delete 
if you forget Project Path Then Go To android Studio Right Click on app and go to  Show in Explorer you get your Project and remove .iml file

步骤3 关闭项目

步骤4 现在复制您的旧项目,并粘贴任何其他根或复制项目文件夹,并粘贴任何 其他的意外死亡。

 Example C:\Users\ashif\Documents/MyApplication 

步骤5

Now open Android Studio and open Existing Project 
C:\Users\ashif\Documents/MyApplication 

尝试一下就会成功


这种方法100%有效

只需要做这些简单的步骤:

退出Android Studio 重命名资源管理器中的主项目文件夹 打开Android Studio,打开你的项目 重建和享受。


在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上运行


1.编辑设置。gradle文件,更改rootProject.name

rootProject.name = "FirebaseDemo"
include ':app'

2.进入项目文件夹,重命名文件夹

3.删除项目中的。idea文件夹并重新构建项目


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


TL; diana:

你可能只关注最后一部分重命名,可能只有图像在里面…: -)


术语:

Android Studio的“项目名称”是不存在的。但它们是在创建新项目时输入的其他名称:

应用程序名称,最初与Gradle的根项目名称相同, 包名, Android Studio项目根文件夹名称。

一般来说,人们想要改变这3个名称,大多数是从Gradle的根项目名称中派生出来的,就像在新建项目对话窗口中建议的那样。

所以我的答案会涵盖这种情况。


分析:

在创建新项目时,我们可能需要遵循与Android Studio相同的步骤。

如果你选择文件→新建→新建项目…(然后是一个项目模板),在新建项目对话框窗口的第一个字段是“名称”字段提供的名称My Application。

2个next字段使用这个(默认的或已更改的)名称派生其他2个字符串的默认名称,例如,有3个重要的字符串

我的应用程序 com.something.myapplication C:\Users\someuser\ AndroidStudioProjects \ MyApplication

此外,

在创建项目之后,还没有构建会使用这3个字符串。


重命名:

因此,在重命名为其他名称期间,我们必须确保4件事-我将使用My改名项目的名称作为新名称的基础。

让我们从最后一个,可能是最简单的一个开始:

Build ->清洁项目

从现在开始,在完全重命名完成之前,请不要进行新的构建。

现在,开始重命名之前指定的3点:

My Application: In the leftmost position of the title bar of the Android Studio Window, you see the same text as I selected in the settings.gradle file: Change this text to the new name (My Renamed Application). The yellowish bar will appear near the top. Click the “Sync Now” in the right-hand part of it:         You will immediately see the change in the title bar: You probably want to change the application name to the same name, too, so change it in the strings.xml resource file (the change will then reflect in the AndroidManifest.xml file, which is important): Before renaming: After renaming:   com.something.myapplication: Change the applicationID in the build.gradle (module level) file - the new name, derived from “My Renamed Application” will be without spaces, all lowercase, i.e. myrenamedapplication: Before changing: After changing: The yellowish bar will appear again near the top. Click the “Sync Now” in the right-hand part of it:           Now close the Android Studio, and rename the folder MyApplication (probably located in the folder C:\Users\someuser\AndroidStudioProjects\) to MyRenamedApplication (the name, derived from “My Renamed Application”, is without spaces). Although this step is optional, it is highly recommended to keep things tidy.

注意:

使用File→Open Recent打开重命名的项目当然会失败,所以在重命名后,第一次使用File→Open打开它。