Using jobb tool in Android

后端 未结 7 1820
感动是毒
感动是毒 2021-01-02 06:13

I am running the following command to get my encrypted obb file for apk expansion.

jobb -d /home/manoj/Desktop/Test -o main.1.com.example.helloworld.obb -k \         


        
7条回答
  •  礼貌的吻别
    2021-01-02 07:05

    You can also get following error with the jobb-Tool (at least in windows with the jobb.bat), if you have many many files.

    de.waldheinz.fs.fat.Directory Full Exception: directory is full
    

    This is, because the obb file format is saved in FAT16, whitch only allows 512 entries/files in the root directory

    On Windows: if you have a folder "data" whith lost of pictures, and copied to the android sdk-tools directory

    • data/1.jpg
    • data/2.jpg
    • data/3.jpg
    • data/...
    • data/5000.jpg

    and you use

    console>>>jobb -pn my.package.name -pv VERSIONCODE -d ./data -k obb_password
    -o main.VERSIONCODE.my.package.name.obb
    

    you will get the mentioned error. Try to add one directory-hierarchy and make the "data"-directory to a subfolder

    • root/data/1.jpg
    • root/data/2.jpg
    • root/data/3.jpg
    • root/data/...
    • root/data/5000.jpg

    use

    console>>>jobb -pn my.package.name -pv VERSIONCODE -d ./root -k obb_password 
    -o main.VERSIONCODE.my.package.name.obb
    

    you have to keep in mind, that if you want to read from the obb later, that the pictures are now in a subfolder.

提交回复
热议问题