286
questions
0
votes
0
answers
10
views
Tracking Android Channel IDs
I'm looking to use FCM for sending out push notifications and I'm curious if I should track on my end the channel IDs or if the phone itself will be handing that piece for me?
I'm not seeing anything ...
0
votes
0
answers
6
views
How to use raw PCM audio data as a custom audio source in WebRTC on Android?
I'm integrating WebRTC into my project (using Java library), and as I can see, it can use pre-defined audio sources like microphone.
I've already implemented a custom audio source that generates PCM ...
0
votes
0
answers
7
views
Temporarily wrong Android Rotation
I have an activity that starts on landscape mode. When the app starts with the mobile vertically positioned it shows the layout correctly, but when I rotate the device horizontally the layout goes on ...
0
votes
0
answers
6
views
clearkey drm with exoplayer playback error
i am trying to play the clearkey drm stream in my android app using media3 exoplayer library. code is showing no error but when i am trying to launch the app it is giving these 2 exceptions:
first one ...
0
votes
1
answer
9
views
Play Install Referrer Integration SecurityException: Binder invocation to an incorrect interface
I am trying to integrate the install referrer support via the Play Install Referrer Library. The app works fine as a debug build, but when testing the flow in a release build, the app crashes with the ...
1
vote
0
answers
9
views
Issues with hierarchy in kotlin
I have a TextElement class with a class level variable valled textGravity which is being initialized with default value Element.HorizontalGravity.DEFAULT
In the constructor of TextElement, I'm calling ...
1
vote
0
answers
7
views
Build Error: Namespace Not Specified for Location Package in Flutter Project
After login home_page.dart
I'm experiencing an error every time I run this app. The variable humanReadableAddress (used for the formatted address in the Google Maps API via geocoder) outputs correctly ...
0
votes
1
answer
12
views
How to create a koin module for interface
I have an abstract class:
abstract class MyFirstViewModel(
private val firstParamArgs: FirstParamArgs,
private val secondParam: SecondParam):ViewModel(),ActionHandler{
override fun handleAction(...
0
votes
0
answers
12
views
Can an Android AppWidget's initialLayout be modified before onUpdate?
Modifying an AppWidget's views is relatively trivial, but the recommended mechanism used to do so is the onUpdate method of the AppWidgetProvider-extended class. The problem I am having is that, in my ...
-1
votes
0
answers
8
views
Why does my Android game activity see a long pause between losing and regaining focus during a screen shot?
My app is a game based on NativeActivity and I pause animations & audio when my window loses focus, such as for pull-down menus, incoming calls, etc. This has been working in general, but when the ...
0
votes
0
answers
8
views
Could not find a driver for automationName 'UIAutomator2' and platformName 'ANDROID' - Appium Issue
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.android.options.UiAutomator2Options;
import io.appium.java_client.service....
0
votes
0
answers
8
views
CredentialManager injected with Hilt throws "Failed to launch the selector UI"
I'm having trouble configuring a CredentialManager module through Hilt. In some devices (particularly a Redmi Note 9), when requesting a Google Sign-In the Credential Manager throws "Failed to ...
0
votes
0
answers
11
views
Automatic axis labeling for diagrams
I am currently programming a diagram view for Android.
How can the axes (in this case the Y-axis) in a diagram be labeled automatically?
In Excel, I only enter bare values, and the division and labels ...
-1
votes
0
answers
17
views
How to read data from a driving license using NFC on Android?
I'm working on an Android application that needs to read data from an NFC-enabled driving license (eDL). The license stores personal data and biometric information, and I'm using the IsoDep API to ...
0
votes
0
answers
9
views
RNFetchBlob crashes on build using download manager but not in emulator
export const downloadImage = async (imageUrl: string): Promise<void> => {
const { fileName, type } = getFileNameFromUrl(imageUrl);
const { fs } = RNFetchBlob;
const downloadDest = ...