163 questions
Advice
0
votes
0
replies
48
views
How to execute the executables (packed as shared lib) from dynamic module on Android 10+?
I'm working on a IDE that runs on Android and includes SDK (actually GCC toolchains for various MCUs). To workaround Google Play 200Mb aab file size limitation i decided to pack every SDK as a dynamic ...
0
votes
0
answers
51
views
Deploy the instant app at closing test, but dynamic module not found
We develop android app request for dynamic feature and looks good at local, and already deploy my instant app at closing test, but dynamic module not found by google play store and return ...
0
votes
0
answers
23
views
Can't Access Drawable Resources from Dynamic Feature Module After Installing via Play Core
I'm developing an Android app where I’ve moved only image resources (no code) into a dynamic feature module named themes. These are various background images for themes (e.g. mid_obsidian, ...
-1
votes
1
answer
295
views
All modules with native libraries must support the same set of ABIs issue, while generating .aab file in android
Does dynamic feature module require same architectures to be mentioned as it is mentioned in base module ?
I am trying to make zoom_6.2.3.24722.aar version as a dynamic feature module in my project. ...
0
votes
1
answer
58
views
Dynamic Features Modules And Its usage
I want to use Dynamic Feature modules in my application. Do I necessarily have to publish my app on the Play Store to use this feature? Is it not possible to use this feature without publishing the ...
1
vote
0
answers
250
views
R8 Minification Fails After Upgrading to Jetpack Compose BOM 2024.06.00 with SDK 34 Migration
I recently upgraded my project from Compose BOM 2023.06.01 to 2024.06.00 after migrating to SDK 34. While the debug build works fine, the release build fails during the R8 minification step with ...
0
votes
1
answer
87
views
How to customise downloading UI for on demand instant modules in android
Currently when requesting another instant module using url deep linking, like so:
val intent = Intent(Intent.ACTION_VIEW, uri)
intent.setPackage(applicationContext.packageName)
intent....
2
votes
0
answers
262
views
Multiple Dynamic Modules - Manifest Merger Issues
Problem Statement-
I have two dynamic modules,
one for barcode scanning - com.google.android.gms:play-services-mlkit-barcode-scanning:18.3.0
and
one for face detection - com.google.android.gms:play-...
0
votes
1
answer
267
views
Resolving Duplicate Library Inclusion in Dynamic Feature Modules
I'm working on an Android project with dynamic feature modules and have encountered a build error related to duplicate library inclusions.
I have two modules, one is using mlkit face detection -
com....
2
votes
2
answers
1k
views
Deep Linking to Android Instant App Module Not Working
Need some help figuring out why deep links aren't triggering our instant app in the Google Play store. They still open in the browser. Following this guide, we refactored our previously monolithic ...
1
vote
0
answers
167
views
Android dynamic features on Expo modules
I have a project that needs to integrate an external library that requires a minSdkVersion of 30+. The problem is that I don't want to make my whole app min sdk version 30+ since I have maybe 15% of ...
1
vote
0
answers
145
views
Is on demand delivery of a flutter package possible using ondemand feature?
I need to add an native library in existing flutter app. I have made a package of it having some platform channel code along with library but I don't want to increase app size so is there any way ...
1
vote
0
answers
115
views
How to fix java.lang.OutOfMemoryError in this case?
I have already searched for OOM issue but I don't know how to fix it.
I am not sure if it is caused by navigation args or view inflater. Please help.
It is highlighted in this line
io.github....
0
votes
2
answers
559
views
Native Library working correctly for install-time module but doesn't work as expected for on-demand module
I'm trying to localize an app that uses Native C++. Most of the codes written in C++ and all strings/text was in certain build flag. E.g LANG_JP // For japanese
I've created an on-demand dynamic ...
0
votes
1
answer
138
views
App crash after upgrade navigation from 2.3.0 to 2.4.1
My app use dynamic-feature-module
upgrade from
//Navigation Component
const val ANDROIDX_NAVIGATION_UI = "androidx.navigation:navigation-ui:2.3.0"
const val ANDROIDX_NAVIGATION_UI_KTX = &...