1,893 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
162
views
Google Play 16KB requirement – React Native 0.81.3 build has libregister.so stuck at 4KB
I recently upgraded my app to React Native 0.81.3 to comply with Google Play’s 16KB page size requirement (mandatory from Nov 2025).
Android Gradle Plugin and Gradle → updated
NDK → r28 (16KB ...
0
votes
0
answers
12
views
Communication between two Android libraries
For the sake of this question, imagine we have two independent libraries (A and B) where:
Library A needs to call code that exists in Library B
Library A cannot depend on Library B directly (I.E. ...
0
votes
0
answers
22
views
android modules build in jitpack by using dev azure repository
I did have creates two library modules along with an app modules I push into Github. It was public repository, after creates a tag on that repo and configure the modules using jitpack. When I am using ...
0
votes
1
answer
86
views
How to upload mapping file of an Android obfuscated library to Crashlytics
We have an Android library that we obfuscate, we then have an application (un-obfuscated) that implements the library, which has Firebase Crashlytics implemented, is it possible to use the mapping ...
1
vote
1
answer
266
views
Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.ProductFlavor:environment'
I have update gradle version in my library project from gradle 7 to gradle 8 and after publishing it, I'm not able to use it in my project that uses gradle 8 as well:
Incompatible because this ...
0
votes
0
answers
44
views
What is the correct way to reference the OutlineAndroidLib file path to build the outline application?
After executing npm run action client/src/cordova/build android command, every process works fine for building the app, but at the end, there is an error:
ERROR(spawn_stream): node --trace-uncaught /...
0
votes
1
answer
134
views
Disable dollars in names in Android Studio when building Android Library
When creating and building an Android Library in Android Studio (gradle) from kotlin, the java auto generating tool puts dollars in classes and methods names.
It's acceptable in Java but I have ...
0
votes
0
answers
37
views
Project android: A problem occurred configuring root project 'flutter_image_compress'. Plugin with id 'com.android.library' not found
Actually in my flutter project I am getting this error with problem of finding root of 'flutter_image_compress' and plugin id 'com.android.library' is missing and also problem with apply script method....
0
votes
0
answers
37
views
Hilt gives class cast exception when try to start an activity inside an android lib
I am developing an android sdk and using hilt inside my lib.
Inside my lib, there is an activity and inside my activity, I manage lib related fragments internally.
If I build my lib without proguard ...
0
votes
0
answers
215
views
How to import a library module with aliased plugins and dependencies into new AndroidStudio projects
The latests gradle plugins and Android Studio versions recommend the use of aliases for plugins and dependencies.
I created a library by doing:
New Project
then New Module (Android Library)
So ...
1
vote
1
answer
136
views
FCM version update for SDK
FCM version: 21.0.0 :
I was using FirebaseInstanceId along with FirebaseOptionsBuilder to receive notifcation on SDK side of the project.
Current docs say
Apps still using deprecated Instance ID APIs ...
0
votes
1
answer
124
views
Nested dependencies or library are not available in generated AAR , Unable to import the class or library used in module to root project
Hi I'm new to android developed, So please excuse any basic mistakes
Developing a KMM project and need to include this as an external dependencies in another project
So converted this KMM project a ...
1
vote
0
answers
204
views
What is the meaning and a solution to java.lang.NullPointerException when building an Android Library using Gradle and Maven?
I'm trying to create my own custom library for Android to streamline the developing process of FTC Robots, I've tried creating a project in IntelliJ and use MavenCentral to publish it, tried ...
1
vote
1
answer
310
views
Android: Multi module library doesn't work with implementation project without publishing all modules
I'm trying to publish a multi-module library but I only want to publish only want one module as follows:
-module main
-module data
-module domain
Sample app should implement only main module (as this ...
1
vote
0
answers
59
views
How to force resource string from library over the same resource name defined in the app
I have an Android app that uses a library and both have string resources with identical names (but with different values). Apps will override and use the app's version and ignore the library's version ...