如何通过编辑清单文件来更改apk名称?

发布于 2024-11-25 13:44:26 字数 62 浏览 0 评论 0原文

我想在项目工作区中更改我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(12

颜漓半夏 2024-12-02 13:44:26

在清单文件中,您只能更改应用程序标签。如果你想改变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.

最美不过初阳 2024-12-02 13:44:26
android update project --name your_desired_name --path .

这会更改 build.xml 中的 ANT 项目名称。

android update project --name your_desired_name --path .

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.

跨年 2024-12-02 13:44:26

转到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

混浊又暗下来 2024-12-02 13:44:26

从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,并添加以下内容:

android.applicationVariants.all { variant ->
    variant.outputs.all {
        def appName = "YourAPKName"
        outputFileName = appName+"-${variant.versionName}.apk"
    }
}

此代码将生成名称为: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:

android.applicationVariants.all { variant ->
    variant.outputs.all {
        def appName = "YourAPKName"
        outputFileName = appName+"-${variant.versionName}.apk"
    }
}

This code will generate file with name: YourAPKName-1.0.apk

ㄖ落Θ余辉 2024-12-02 13:44:26

我认为可以从 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.

浅笑轻吟梦一曲 2024-12-02 13:44:26

在 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.

时光沙漏 2024-12-02 13:44:26

在清单文件中,

android:label="@string/app_name"

在字符串 xml 中更改此应用程序名称对我有用。

In the manifest file,

android:label="@string/app_name"

changing this appname in string xml worked for me.

凉月流沐 2024-12-02 13:44:26

右键单击您的项目->转到重构->选择重命名>给出文件名。
它将重命名 apk 文件。

Right click on your project->Go to refactor->select rename & give name of the file.
It will rename apk file.

悍妇囚夫 2024-12-02 13:44:26
  1. 探索您的项目

  2. rec >值> String.xml

  3. 更改为您想要的您的应用程序名称

  1. Explore your project

  2. rec > values > String.xml

  3. Change it which you want <string name="app_name">Your App Name</string>

彻夜缠绵 2024-12-02 13:44:26

现在你可以尝试更改 Gradle 文件:

   android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"
    defaultConfig {
        applicationId "com.company.app"
        minSdkVersion 13
        targetSdkVersion 21
        versionCode 14   
        versionName '1.4.8' 
        setProperty("archivesBaseName", "MyAppName-$versionName")
    }
}

Now you can try it changing the Gradle file :

   android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"
    defaultConfig {
        applicationId "com.company.app"
        minSdkVersion 13
        targetSdkVersion 21
        versionCode 14   
        versionName '1.4.8' 
        setProperty("archivesBaseName", "MyAppName-$versionName")
    }
}
灯角 2024-12-02 13:44:26

将应用程序的名称更改为根
步骤:

  1. 单击您的应用程序根目录。

  2. 单击 f2 按钮。

  3. 并更改您想要的 apk 名称

Change the name of your application to the root
steps:

  1. click on your application root.

  2. click f2 button.

  3. and change the name which you want of ur apk

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文