nicolastinkl / apk_to_aab

Android平台下apk转化为aab文件的python脚本,支持Windows和Macos以及Ubuntu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

apk转化aab and aab转化aab

Mac OX 使用流程

  • 运行环境 python3.10 +

  • 安装需要的环境

    pip install -r requirements.txt
  • 普通默认直接执行命令生成aab

    python3.10 bundletool.py -i test.apk -o test.aab
  • 普通默认带证书直接执行命令生成aab

    python3.10 bundletool.py -i /Users/abc123456/Documents/ios/build_aab_tool/ss/com.mahnoor.piratejackpotSlotGame/9fc464b9f2b10c37a5e2c1a2e3ef12e0.20230624180533.apk -o /Users/abc123456/Documents/ios/build_aab_tool/ss/com.mahnoor.piratejackpotSlotGame/9fc464b9f2b10c37a5e2c1a2e3ef12e0.20230624180533.apk_21_07_17.aab  --keystore /Users/abc123456/Documents/ios/build_aab_tool/ss/com.mahnoor.piratejackpotSlotGame/user.keystore  --store_password BlackJackPoker1!@# --key_alias  BlackJackPoker  --key_password  BlackJackPoker1!@#
    

    参数说明:

      -h 
    
    ​		show this help message and exit
      -i 
    
    ​		输入apk的路径
      -o 
    
    ​		输出apk的路径
      --keystore 
    
    ​		签名文件路径
      --store_password 
    
    ​		签名文件路径
      --key_alias 
    
    ​		签名文件路径
      --key_password 
    
    ​		签名文件路径
      --apktool 
    
    ​		apktool.jar路径
      --aapt2 
    
    ​		aapt2路径
      --android 
    
    ​		android.jar 路径
      --bundletool 
    
    ​		bundletool.jar 路径
      --pad_reg 
    
    ​		正则表达式,从assets里面去剪切文件构建pad模块 例如: ^\d.*\.map$ 剪切以数字开头 .map 结尾的文件到pad目录
    
  • 下载后的apk一键生成子目录,根据包名设置

    python gen_apk_folder.py path

  • 但是输入脚本太过于复杂,所以添加了一个自动查找签名识别证书的脚本,一键签名

    python sign_apks.py path

Windows 使用流程

  • 运行环境 python3.10+

  • 新版本没有zip环境 所以需要添加环境变量配置

  • 安装需要的环境

    pip install -r requirements.txt


  • 建议windows下可以安装VSCode来使用Shell环境,配置好环境后需要重新VSCode

    python.exe gen_apk_folder.py path

  • 一键执行apk转化为aab文件

    python.exe sign_apks.py path
  • 一键执行aab转化为aab签名文件

    python.exe sign_aabs.py path

License

Copyright 2021 

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Android平台下apk转化为aab文件的python脚本,支持Windows和Macos以及Ubuntu


Languages

Language:Python 93.5%Language:Shell 6.5%