I just started to make changes to my application to use app bundle feature. During my build process, I used to unzip an apk and modified the application id in the manifest file, then zipped it back to apk using apktool in order to create two apks with different ids. I am wondering whether similar process is possible with app bundle. I can see the app bundle contains multiple apks using bundeltool with build-apk. Is anyone know is there any way I can put this unzipped app bundle back to the normal app bundle file using bundletool or any other command line tool?
Unzipping Android app bundle and zipping again
1.8k Views Asked by imodeGowas At
1
There are 1 best solutions below
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in ANDROID-MANIFEST
- Android activity-alias includes
- Camera Access Failure after Migration to Android 14
- Google rejected my app because I made users go to developer option by opening settings without their permission
- Is there any way to get READ_PRECISE_PHONE_STATE permissions on android without manufacturer access?
- provider duplicate while compiling a Cordova application for the Android platform
- Same code, Bluetooth Module working fine on Android 11, but missing devices in Android 11+
- IOS pwa start_url doesn't dynamically changes
- Persistent AD_ID permission after deleting it from AndroidManifest.xml
- The activity 'MainActivity' is not declared in AndroidManifest.xm
- Multiple manifests in one source set
- error com.lirmusic.LIRMUSIC/com.ryanheise.audioservice.AudioServiceActivity} does not exist in just_audio_background
- Receiving android manifiest build error on .Net7 Android app with maui essentials
- SecurityException: The number of child package elements exceeded the max allowed in queries
- Is this the correct way to add permissions to the androidmanifest in React Native?
- How to remove support from other Android Play Store form factors?
Related Questions in ANDROID-APP-BUNDLE
- Firebase Test Lab and Play Store internal testing app fails to install with INSTALL_FAILED_INVALID_APK message
- How to create app bundle file in uno platform?
- How to fix flutter build app bundle error?
- Firebase App Distribtion AAB signing key?
- "compileReleaseJavaWithJavac'" Error when trying to output application in AAB format in flutter
- Why i got this error while uploading my appbundle to play store?
- How to update sdk using only aab or apk?
- How to build .aab bundle instead .apk file with react native EXPO locally?
- My android app shows temporary name (Package name) in the play store and (Unreviewed)
- Accessing native libraries files
- Android .AAB in GooglePlay Store does not load load languages with EnabledLanguageSplit
- Is there a way to upload an app bundle or apk to Google Play WITHOUT using Google Play Signing?
- dotnet not generating unsigned apk
- Determine if building Android APK or AAB in Gradle
- JAVA_TOOL_OPTIONS gradle problem while building Unity project App Bundle
Related Questions in APP-ID
- Passing arguments to a model driven app in PowerApps
- Which tenant owns the application created by teams fx toolkit?
- Connect azure key vault getting error is "System.Net.Http.HttpRequestException: ' in C#
- how to connect saml appid on ibm cloud with ReactJS application?
- Which "app-id" do I use for an App Clip's apple-itunes-app meta tag?
- How can I make my script remove the facebook app ID?
- Can't create an app id for a team account on app store connect
- Can we update the existing facebookAppId?
- Cypress test exit test cases after redirecting to external login
- How to find the AWS Amplify appId?
- The app configuration in App Studio does not exist for the id 4f2c0a7d-6ab9-4594-b2b6-bec7ccd7d0e6 in the organization you are currently logged into
- What is the unique element which is used to identify desktop softwares?
- Weird Android colour behaviour when changing gaddle's appId
- How to get capability list for existing MacOs application
- nuxt.js call stack size render issue when login with IBM App Id
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you can unzip, modify the AndroidManifest.xml an re-zip an App Bundle.
I have written how to do that in this answer: Modify Android App Bundle (aab) Contents before deploying