I use bundle tool version 1.7.0 to extract apks from bundle file (.aab) after that it gave me a toc.pb and splits folder. On splits folder there are apks base.af,base.en, base-master.apk, base-master2.apk etc. but when i try to install it on my device it says app not installed but on bluestach version 5 it work. What do you guys think I should do?
1
There are 1 best solutions below
Related Questions in CORDOVA
- how to get rid of the cordova screen when you open the app
- How to build a codesandbox project to android apk?
- Cordova Android run failed
- Cordova Build issue since version 12.0.0
- cordova-background-geolocation-plugin don't giving any response in cordova android app
- provider duplicate while compiling a Cordova application for the Android platform
- Detect clickable areas within <img> tag in Ionic project
- Whitelisting Ionic app in Salesforce Org for CORS/CSP
- gradle keeps failing. Cordova run. Vscode
- Cordova plugin splashscreen issue while Azure Devops with ant build using android-cordova application
- Ionic 3 issue while generating AAB file
- Xcode Undefined symbols, Linker command failed with exit code 1 (use -v to see invocation)
- Xcode 15.3 build failed
- Samsung screen zoom ruining my cordova built android app
- command: ionic server Killed 9
Related Questions in BUNDLETOOL
- Could not resolve all files for configuration 'classpath'.>Could not find bundletool-1.9.0.jar (com.android.tools.build:bundletool:1.9.0)
- Converting .apk into .aab
- Platform specifc assets folders in Android App bundle's
- appium-doctor can't find bundletool when installed with brew on macOS
- Description of the convert from AAB to APK
- Can I add flags to bundletool command in Android Studio?
- Command that reflects the update scenario in the store
- A failure occurred while executing com.android.build.gradle.internal.tasks.FinalizeBundleTask$BundleToolRunnabl
- Code verification error when uploading AAB: "Files added after transparency metadata generation"
- Get the content from the output APK of aapt2 link
- Generate .abb file from apk or using cordova
- Android: MANIFEST.MF missed while generating the apk from the aab using bundletool
- Generate debug Apk from debug aab file is not working
- bundletool build-bundle error: [BT:1.8.2] Error: Version code not found in manifest
- unpacked apk usign bundletool throws problem parsing package
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?
You shouldn't extract the APKs manually. You should use bundletool to select the APKs that are appropriate for the device.
First, you create a JSON file with the device specifications, then you pass it to the
extract-apkscommand of bundletool.From https://developer.android.com/studio/command-line/bundletool:
Another shorter way would be to call the
install-apksdirectly if you don't need to see the APKs before installing them.See the Deploy to a connected device section of the documentation.