1,414,467 questions
Advice
0
votes
2
replies
25
views
In Android, can a shared library have a custom file extension instead of .so and still be loaded using loadLibrary?
I'm working on an Android project with C++ native libraries built using CMake. I want to give my shared libraries a custom file extension (e.g. .abc or .xyz) instead of the standard .so.
Most of my ...
0
votes
0
answers
6
views
Permission request popup not showing until app restart
My app requests 2 permissions, in the following order:
Push Notifications.
Make & Manage Phone Calls
For some reason, the second permission request popup (phone calls) displays first.
The first ...
0
votes
1
answer
76
views
How to make a better OTP/Pin Text Field
My original attempt used seperate TextFields for each pin number. When a pin number was entered it would go to next TextField. On typing Backspace in an empty TextField it would clear the previous ...
Advice
1
vote
3
replies
75
views
How can I download a Play Store app through browser on emulator
I'm trying to download app using a link on aandroid emulator. For example, I'm trying to download an app using a referral link through a browser so I get credit for the referral. How can I accomplish ...
0
votes
0
answers
46
views
Flutter Referral System (2026) - Preserve referral code after Play Store/App Store install
I'm implementing a referral system in Flutter for both Android and iOS.
Flow:
User A shares a link containing a referral code (?ref=ABC123).
User B clicks the link.
If the app is not installed, the ...
Advice
0
votes
4
replies
122
views
As a developer, how do I prevent your features from being broken by other team members?
There are four scrum teams under my line manager's supervision and we work together to build an android application. There is a team which builds foundational components that include common utilities ...
-3
votes
0
answers
94
views
Uber Driver API (/partners/trips, /partners/payments) — correct product, required scopes, and access approval for per-driver OAuth consent? [closed]
I’m building a mobile app (Croatia / EU) that lets each independent Uber driver connect their own Uber account and view their own trips, earnings and tax summaries inside the app. Each driver is a ...
0
votes
0
answers
62
views
Android .Net Maui Button not responding
I just created a new .Net Maui App - selected my Android Emulator and hit Run.
the button does not fire the CLICKED method. If I run the same code for the Windows Emulator - it works just fine.
I did ...
Best practices
0
votes
2
replies
60
views
what is the best practices to get the height of the fontSize of languages and font family?
what I want is to get the height of pixels when I draw it on bitmap.
bitmap = Bitmap.CreateBitmap(rect.Width(), height, Bitmap.Config.Argb8888);
canvas = new Canvas(bitmap);
_paint.SetTypeface(...
1
vote
2
answers
108
views
IntelliJ/AndroidStudio: icon_banner_image.xml Not Found (Snap)
As shown in the screenshot the Next button is disabled with File ic_banner_image.xml does not exist error when I try to create icon assets using Asset studio wizard.
I am using IntelliJ IDEA 2026.1....
Advice
0
votes
2
replies
75
views
Looking for original unarchived Android SDK pre-release versions (m3-rc37, m5-rc15, 1.5_pre, etc.)
Back in 2008-2009, Google released several early Android SDK builds that were listed on developer.android.com/sdk/older_releases. That page is long gone, and so are the files. I've spent a significant ...
1
vote
0
answers
76
views
FLAG_SECURE not working on Google Pixel devices
I am developing an Android application using the View/XML approach and need to prevent screenshots and screen recordings. To achieve this, I have enabled FLAG_SECURE using:
window?.addFlags(...
Advice
1
vote
0
replies
90
views
Becoming Android Freelance Developer or IOs Developer- which one is best and why?
I am looking to switch careers from Software Engineering to Mobile developer to work as a freelance in exciting projects. I am wondering which mobile tech is best: Android or IOs or Flutter?
I do have ...
4
votes
1
answer
130
views
How do I make an infinite animation with ease in?
I'm using jetpack compose in kotlin for my Android project. I am trying to animate planets orbiting around a center, which works perfectly. The animation starts at a button push and will continue ...
2
votes
0
answers
101
views
Android APK doesn't work after rezipping and signing with no other changes
I have an Android apk that I would like to modify at the byte level. However, even with no changes other than unzipping, rezipping, zip aligning and resigning it no longer works correctly (it starts ...