goldfish07 / ResChiper

AAB Resource Obfuscation Tool for Android
Apache License 2.0
69 stars 9 forks source link

so files were loss? #5

Closed VocientLuo closed 8 months ago

VocientLuo commented 8 months ago

this is app-release.aab 1703060944915_846075D0-DFD1-4f80-BBFF-E6BCF22D06F8

this is reschiper-app.aab 1703058105671_8C35723E-0E23-4564-B1EB-87662DA57955

lib dir was dismiss

build.gradle is defult config

goldfish07 commented 8 months ago

When utilizing a fileFilterList, files within the directories specified in the list are excluded from the app bundle.

comment out abi dir in fileFilterList

    fileFilterList = [ // file filter rules
//                       "*/armeabi-v7a/*",
//                       "*/arm64-v8a/*",
//                       "*/x86/*",
//                       "*/x86_64/*",
                       "META-INF/*"
    ]
VocientLuo commented 8 months ago

When utilizing a fileFilterList, files within the directories specified in the list are excluded from the app bundle.

comment out abi dir in fileFilterList

    fileFilterList = [ // file filter rules
//                       "*/armeabi-v7a/*",
//                       "*/arm64-v8a/*",
//                       "*/x86/*",
//                       "*/x86_64/*",
                       "META-INF/*"
    ]

thanks, i resolved the issue。fileFileterList is useless image

goldfish07 commented 8 months ago

Good to hear you resolved issue your own :)

fileFilterList becomes particularly useful when a library includes unnecessary files that are not used or required by your app in the final app bundle. When used correctly,

fileFilterList is instrumental in reducing the app bundle size, ensuring that only essential files are included. This optimization is crucial for improving download and installation times, enhancing performance, and minimizing storage space requirements in Android device.

VocientLuo commented 8 months ago

Good to hear you resolved issue your own :)

fileFilterList becomes particularly useful when a library includes unnecessary files that are not used or required by your app in the final app bundle. When used correctly,

fileFilterList is instrumental in reducing the app bundle size, ensuring that only essential files are included. This optimization is crucial for improving download and installation times, enhancing performance, and minimizing storage space requirements in Android device.

Got it, thanks again.