49 questions
0
votes
0
answers
37
views
NullPointerException: dexPath == null when running Chromium 136 bundle APK (PlaybackListenerService crash)
I am trying to upgrade my project to Chromium 136 and build a bundle APK. The local release APKs work fine, but when I install the bundle build from Play / bundletool, the app crashes with the ...
0
votes
1
answer
242
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....
1
vote
0
answers
81
views
splitInstallManager.installedLanguages is 0 while running it as apk, it will work fine in aab, but will this work in apk too?
splitInstallManager.installedLanguages is 0 while running it as apk
if (!splitInstallManager.installedLanguages.contains(selectedLang) {
val request = SplitInstallRequest.newBuilder()
...
1
vote
0
answers
55
views
Is it possible to load Dynamic feature from a library in android?
Can i load a dynamic function from a jitpack library ?
My use case is:
I developed an android app (30MB due to product requirement) which i want to share with third party vendors. i cannot share my ...
5
votes
0
answers
335
views
Not able to access Assets file under dynamic module
I am working with android applications.
So far I had some files on my assets which I was able to access using
context.getAssets().open(fileName)
Now I am trying to integrate a dynamic on demand ...
0
votes
0
answers
539
views
How to use Firebase component Discovery service in On-demand feature module
If I add firebase.ComponentDiscoveryService in AndroidManifest.xml of the on-demand module,
<service android:name="com.google.firebase.components.ComponentDiscoveryService">
</...
2
votes
1
answer
288
views
Increase Dynamic Delivery Module Limit
I am in a situation where I need to add more than 50 dynamic modules to my project, but when I am trying to add 51th module, error message comes
You have reached the maximum number of feature splits : ...
2
votes
1
answer
922
views
Resources$NotFoundException in Dynamic Feature Module - Android
I am getting Resources$NotFoundException in my dynamic feature module while accessing the layout file. Full error logs below. How can I fix this?
android.content.res.Resources$NotFoundException: ...
0
votes
1
answer
123
views
PHP - Adding extra shipping fee if time is between 8pm and 8am
I have a food ordering script which I want to add If delivery time is between 8:00:00PM - 7:59:59AM to add an extra fee of $5 and if it is between 8:00:00 AM and 7:59:59 PM to keep delivery as is in ...
0
votes
1
answer
303
views
Is there a way to use the Platstore's Dynamic Delivery to download the native libs (.so) at runtime after install?
As the question says, can I use the Dynamic delivery feature to deliver the .so files that my app uses after installation? My .so files are 15 MB in size and this causes the app's size to increase two-...
0
votes
1
answer
430
views
Android DFM Dynamic FeatureModule Resources NotFoundException
In our app we start using Dynamic Feature Module (DFM) for big resources. We move most of drawables to DFM and load them if needed.
For loading drawable using a Provider and application context (as in ...
5
votes
2
answers
256
views
Incorrect value of app module dimen/color when using in dynamic-delivery module
I have app module and one dynamic module named - "chat". I have a layout and fragment resides in chat module, in layout there is a android:textSize="@dimen/sp20" written. Dimen is ...
3
votes
1
answer
112
views
How can I execute the failed state with error code "INCOMPATIBLE_WITH_EXISTING_SESSION" in android dynamic delivery?
According to the Android developer documentation, the definition of the failed state "INCOMPATIBLE_WITH_EXISTING_SESSION" is
The request contains one or more modules that have already been ...
1
vote
1
answer
886
views
Install-time dynamic delivery of feature module based on user's country
I am trying to use the benefit of install-time dynamic delivery using country-specific condition. As per this doc Google Play does provide a way to give condition based on country. To make use of this ...
2
votes
1
answer
518
views
Modules 'base' and 'AdharVerificationDynamicFeature' contain entry 'assets/crashlytics-build.properties' with different content
I am generating Signed Build Bundle. Instant App Module is launching perfectly in device but when I am generating Signed Build Bundle I got this error.
'Modules 'base' and '...
2
votes
1
answer
378
views
What is the difference between <uses-feature android:name="android.hardware.camera"/> and <uses-feature android:name="android.hardware.camera.any"/>
Could anyone please explain what is the difference between
<uses-feature android:name="android.hardware.camera"/>
and
<uses-feature android:name="android.hardware.camera.any"/>
also ...
1
vote
1
answer
318
views
Is it possible to get an on dynamic feature module size before starting to download it?
I would like to know if it is currently possible to know the on dynamic feature module size before we start to download it. I didn't find an answer to it anywhere on the web =/.
10
votes
0
answers
2k
views
Android Dynamic Delivery using React native
I have read about android Dynamic Delivery using Android App Bundles to generate and serve optimized APKs for each user’s device configuration, so users download only the code and resources they need ...
1
vote
0
answers
181
views
Dynamic delivery user confirmation dialog is shown if the module size is less than 10MB
I have implemented a dynamic module which has a size of 4.6MB and according to google documentation https://developer.android.com/guide/app-bundle/playcore if the size is less than 10MB then we are ...
9
votes
1
answer
13k
views
Cannot choose between the following variants of project :features:myDynamicFeatureModule:
I am experimenting with Android's Dynamic Feature Modules (a.k.a. on demand modules) on the side of the project I am working on.
In my PoC (proof-of-concept) project, Dynamic Feature Modules (DFM) ...
0
votes
0
answers
158
views
Android Dynamic Delivery: Supertypes of the following classes cannot be resolved ; Unresolved supertypes : android:support:v7:app:AppCompatActivity
I am adding a new dynamic module to my existing project.
After adding a dynamic module and making the project give me Supertypes not resolved issue.
My existing project is a mixture of Kotlin and Java
...
2
votes
0
answers
924
views
With Dynamic Feature module not able to build the project
I migrated my project to androidX. After which I was trying to add one dynamic feature module. But after adding it, I am not able to build the project.
I am getting an error similar to:
Expected ...
0
votes
0
answers
531
views
Android dynamic module only on arm processors
I'm adding dynamic feature to my application.
In dynamic module I have dependency with external library, which supports only arm abis.
My app supports arm and x86 abis.
Additionally I have a few of ...
0
votes
0
answers
2k
views
How to fix "Program type already present" error when dynamic feature is using an external aar dependency
We have a 3rd party aar file that due to size considerations we decided to split to a separate dynamic-feature (module).
Both main app and dynamic module are using com.google.code.gson:gson
when they ...
3
votes
2
answers
5k
views
Android App Bundles: there was a problem while parsing the package (dynamic feature module only)
I am trying to implement Android App Bundles and I need it to work outside of the Play store.
I have created a new project with an activity containing a button
I have created a new Dynamic Feature ...