Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
37 views

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 ...
Sanjay Bhalani's user avatar
0 votes
1 answer
242 views

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....
Harish Gyanani's user avatar
1 vote
0 answers
81 views

splitInstallManager.installedLanguages is 0 while running it as apk if (!splitInstallManager.installedLanguages.contains(selectedLang) { val request = SplitInstallRequest.newBuilder() ...
Karthik's user avatar
  • 101
1 vote
0 answers
55 views

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 ...
Pardeep Sharma's user avatar
5 votes
0 answers
335 views

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 ...
Shihab Uddin's user avatar
0 votes
0 answers
539 views

If I add firebase.ComponentDiscoveryService in AndroidManifest.xml of the on-demand module, <service android:name="com.google.firebase.components.ComponentDiscoveryService"> </...
Karandeep Singh's user avatar
2 votes
1 answer
288 views

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 : ...
MaKi's user avatar
  • 303
2 votes
1 answer
922 views

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: ...
Ankush Kapoor's user avatar
0 votes
1 answer
123 views

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 ...
OUALID's user avatar
  • 25
0 votes
1 answer
303 views

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-...
vaishak bg's user avatar
0 votes
1 answer
430 views

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 ...
Олег Минеев's user avatar
5 votes
2 answers
256 views

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 ...
Harish Gyanani's user avatar
3 votes
1 answer
112 views

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 ...
neg.gh's user avatar
  • 113
1 vote
1 answer
886 views

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 ...
Just Another Developer's user avatar
2 votes
1 answer
518 views

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 '...
Prakash's user avatar
  • 179
2 votes
1 answer
378 views

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 ...
Mayank Kumar Chaudhari's user avatar
1 vote
1 answer
318 views

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 =/.
Augusto Carmo's user avatar
10 votes
0 answers
2k views

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 ...
Naveen Kumar H S's user avatar
1 vote
0 answers
181 views

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 ...
Lloyd Dcosta's user avatar
9 votes
1 answer
13k views

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) ...
mrmitew's user avatar
  • 91
0 votes
0 answers
158 views

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 ...
Sunny Kumar's user avatar
2 votes
0 answers
924 views

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 ...
Aman Bindlish's user avatar
0 votes
0 answers
531 views

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 ...
AdamN's user avatar
  • 586
0 votes
0 answers
2k views

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 ...
Snufkin's user avatar
  • 108
3 votes
2 answers
5k views

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 ...
Cliff Burton's user avatar
  • 3,804