How to create .obb file as main apk expansion file using jobb tool?

后端 未结 3 559

I have an apk of 80Mb and so am not able to upload it on google play store. I have googled a lot and found that I have to create .obb file as the main expansion

3条回答
  •  一整个雨季
    2020-12-16 09:14

    I was able to create the OBB file with below command BUT the problem was it was not extracted in app and stuck at ZipInputStream zis zis.getNextEntry()

    /Users/rohit/Library/Android/sdk/tools/bin/jobb -d /Users/rohit/Workspace/code/iam/repo/music' 'files -o main.33.com.aml.iatia.activity.obb -pn com.aml.iatia.activity -pv 33

    As a solution, I created using CLI in MAC with below command and it worked very fine.

    zip -r main.33.com.aml.iatia.activity.obb music' 'files -x "*/\.*"

提交回复
热议问题