Flutter 使用 AndroidStudio 给(Android 安卓)进行签名方法

一、使用 AndroidStudio 创建签名

  1. 使用 AndroidStudio 打开 Flutter项目中的 android 文件夹
  2. 首次打开 AndroidStudio 会加载一会。
  3. 菜单栏 : Build -> Generate Signed Bundle APK...
    1. 选中 APK -> Next
    2. 点击Create new....
    3. 下面按照需求填写即可- 文件夹选择 项目的android 目录 -> 点击ok
    4. 点击Next
    5. 此时已经生成好文件了在flutter项目->android文件夹下。 不需继续打包apk,点击Cancel 即可。

二、配置签名

  1. 在android 目录下创建 key.properties 文件,添加下面代码并添写上面创建签名时的信息。
复制代码
   storePassword=your password
   keyPassword=your password
   keyAlias=your key
   storeFile=../flutter_key_store.jks
  1. 进入android -> app -> build.gradle 文件下 增加下面配置 (注意位置)
复制代码
   def keystoreProperties = new Properties()
   def keystorePropertiesFile = rootProject.file('key.properties')
   if (keystorePropertiesFile.exists()) {
       keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
   }


6. 当前文件 继续增加 以下代码。 同时修改对应代码 (signingConfig signingConfigs.release)。 *注意位置

复制代码
   signingConfigs {
          release {
              keyAlias keystoreProperties['keyAlias']
              keyPassword keystoreProperties['keyPassword']
              storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
              storePassword keystoreProperties['storePassword']
          }
      }

三、配置完成。

  1. 下面就可以 执行 flutter build apk, 并在google pay 上传应用了

*当你更改 gradle 文件后,也许需要运行一下 flutter clean。这将防止缓存的版本影响签名过程

跳转至 官方教程 >>

相关推荐
前行的小黑炭27 分钟前
设计模式:为什么使用模板设计模式(不相同的步骤进行抽取,使用不同的子类实现)减少重复代码,让代码更好维护。
android·java·kotlin
ufo00l1 小时前
2025年了,Rxjava解决的用户痛点,是否kotlin协程也能解决,他们各有什么优缺点?
android
古鸽100861 小时前
libutils android::Thread 介绍
android
_一条咸鱼_1 小时前
Android Compose 框架性能分析深度解析(五十七)
android
BrookL1 小时前
Android面试笔记-kotlin相关
android·面试
QING6184 小时前
Kotlin Delegates.notNull用法及代码示例
android·kotlin·源码阅读
QING6184 小时前
Kotlin filterNot用法及代码示例
android·kotlin·源码阅读
张风捷特烈19 小时前
Flutter 伪3D绘制#03 | 轴测投影原理分析
android·flutter·canvas
马拉萨的春天1 天前
flutter 项目结构目录以及pubspec.ymal等文件描述
flutter
omegayy1 天前
Unity 2022.3.x部分Android设备播放视频黑屏问题
android·unity·视频播放·黑屏