I've generated the .aab file using the ./gradlew bundle command. Latter unzipped the .aab got resources and dex files. Now I want to change some version code in AndroidManifest.xml, some resource files, and again need to recompile the same .aab file.
In the case of .apk, we can achieve using APKTool(reverse engineering) this working perfectly.
Since we have to move from APK to AAB, I'm unable to rebuild after modification .aab file. Please give your pointers on how to do this using the commands?.
Thanks in advance!!

Generally we recommend not to manipulate the .aab file manually but let
bundletooldo the task.The recommendation is to use
./gradlew bundleas you have done in the first instance, after applying changes to the project that is being built. The resulting .aab file will contain these changes.This means you won't have to manipulate the contents by hand.