如何通过编辑清单文件来更改apk名称?
我想在项目工作区中更改我的 apk 名称。如何通过编辑AndroidManifest.xml文件来做到这一点?
I want to change my apk name in the project workspace. How to do it by editing the AndroidManifest.xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
在清单文件中,您只能更改应用程序标签。如果你想改变apk文件名,你应该改变你的项目名称。为此,您只需在导航器窗口中右键单击您的项目,选择“重构”>“重命名”并为其输入一个新名称。
In manifest file, you can change the application label only. If you want to change the apk file name, you should change your project name. To do this, you just right click on your project in Navigator windows, choose Refactor>Rename and type a new name for it.
这会更改 build.xml 中的 ANT 项目名称。
This changes the ANT project name in build.xml.
在 Eclipse(Windows 或 Linux)中,右键单击项目文件夹的根目录并重命名项目。该 apk 将采用新名称。
In Eclipse ( Either Windows or Linux) , right click the root of the project folder and rename the project. The apk will take the new name.
转到manifest.xml,您可以在其中更改 android:label 的名称来更改应用程序的名称
例子:
如果应用程序名称是 hello world!然后你想改变暴徒生活
更改 android:label="你好世界!"到
android:label = "暴徒生活"
就像我说的那么简单
go to manifest.xml where you can change the name of android:label to change the name of app
example:
if the app name is hello world! and you want to change to thug life then
change android:label="hello world!" to
android:label = "thug life"
its as simple as i said
从manifest.xml中,您只能更改应用程序标签。您无法从那里更改 apk 名称。
默认情况下,Android Studio 生成 APK 名称,例如 app-debug.apk 或 app-release.apk。但是,我想生成我自己的 APK 名称。您可以使用您想要的任何名称来更改它,只需在 build.gradle 文件中进行一些小的更改。然后Android Studio将为您生成签名的APK。
这是使用 Android Studio 3 对我有用的简单方法。
编辑 module(app) build.gradle,并添加以下内容:
此代码将生成名称为:YourAPKName-1.0.apk 的文件
from the manifest.xml you can change application lebel only. you cant change apk name from there.
By default, Android Studio generates APK name like app-debug.apk or app-release.apk. But, i want to generate my own APK name. You can change it with your whatever name you desire with small changes in build.gradle file. Then Android Studio will generate signed APK for you.
This is the simple one that works for me using Android Studio 3.
Edit module(app) build.gradle, and add below:
This code will generate file with name: YourAPKName-1.0.apk
我认为可以从 Android Manifest xml 更改生成的 apk 文件名。在 Android manifest.xml 中更改应用程序的根包名称...需要稍微调整一下代码,现在生成的 apk 将具有不同的名称。
I think its possible to change the generated apk file name from Android Manifest xml. Change the application's root package name in Android manifest.xml ... need to tweek the code a bit and now the generated apk would have different name.
在 Windows 上的 Eclipse 中,您可以通过在 Package Explorer 中右键单击应用程序的根目录,选择 Android Tools,然后选择 Rename Application Package 来完成此操作。
In Eclipse on Windows you can do it by right-clicking on the root of the application in Package Explorer, pick Android Tools, then Rename Application Package.
在清单文件中,
android:label="@string/app_name"
在字符串 xml 中更改此应用程序名称对我有用。
In the manifest file,
android:label="@string/app_name"
changing this appname in string xml worked for me.
右键单击您的项目->转到重构->选择重命名>给出文件名。
它将重命名 apk 文件。
Right click on your project->Go to refactor->select rename & give name of the file.
It will rename apk file.
探索您的项目
rec >值> String.xml
更改为您想要的您的应用程序名称
Explore your project
rec > values > String.xml
Change it which you want
<string name="app_name">Your App Name</string>
现在你可以尝试更改 Gradle 文件:
Now you can try it changing the Gradle file :
将应用程序的名称更改为根
步骤:
单击您的应用程序根目录。
单击 f2 按钮。
并更改您想要的 apk 名称
Change the name of your application to the root
steps:
click on your application root.
click f2 button.
and change the name which you want of ur apk