flutter 一键打出不同包名、应用名、版本名、签名、应用图标、版本号的安装包

在Flutter中,可以通过修改项目根目录下的pubspec.yaml文件和androidios目录下的配置文件来实现不同的包名、应用名、版本名、签名和应用图标、版本号。

以下是一个简化的例子,展示如何在pubspec.yaml中设置不同的包名和应用名,以及如何在androidios目录中分别设置应用图标和版本信息。

pubspec.yaml 示例:




name: MyApp
description: A new Flutter application.
 
# The following defines the version and build number for the application.
# The version number comes from the pubspec.yaml file.
version: 1.0.0+1
 
# The following sets the application identifier (package name).
# This is typically used as an internal name, and must be unique on the store.
# The "com.example" part is a reverse domain name style to help prevent naming conflicts.
# The "my_app" part is the actual name of the app.
# You can change these to your own values.
# 包名
package_name: com.example.myapp
 
# The following defines the application's name.
# This is the name that users see.
# You can change these to your own values.
# 应用名
app_name: My App
 
# The following section is for setting up icons and launcher images.
# You can replace these with your own icons and images.
# android和ios目录中会有更详细的设置
 
# 版本号和版本名
# 这些信息会显示在用户设备上的应用信息中

android/app/build.gradle 示例:




android {
    compileSdkVersion 30
 
    defaultConfig {
        // 应用ID
        applicationId "com.example.myapp"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0.0"
    }
 
    // ...
}
 
// 签名配置
signingConfigs {
    release {
        storeFile file('my-release-key.keystore')
        storePassword 'password'
        keyAlias 'MyReleaseKey'
        keyPassword 'password'
    }
}
 
// 应用图标和启动图标配置
android {
    // ...
 
    defaultConfig {
        // ...
 
        // 应用图标
        applicationIcon "app/src/main/res/mipmap-xxhdpi/ic_launcher.png"
    }
 
    // ...
}

ios/Runner/Info.plist 示例:




<dict>
    <!-- ... -->
 
    <!-- 应用名 -->
    <key>CFBundleName</key>
    <string>My App</string>
 
    <!-- 应用显示名 -->
    <key>CFBundleDisplayName</key>
    <string>My App</string>
 
    <!-- 应用图标 -->
    <key>CFBundleIconFiles</key>
    <array>
        <string>Icon-App-76x76@2x.png</string>
        <string>Icon-App-120x120@2x.png</string>
        <string>Icon-App-152x152@2x.png</string>
        <!-- ... -->
    </array>
 
    <!-- 版本信息 -->
    <key>CFBundleShortVersionString</key>
    <string>1.0.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
 
    <!-- ... -->
none
最后修改于:2024年08月16日 11:32

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日