1,417,274 questions
0
votes
0
answers
14
views
The Android APK is not built from the Python Flet project
I wrote a simple app that retrieves, displays, and modifies data from a JSON file. The app uses BS4, requests, and Flet=0.29.3 (I'm not upgrading to a higher version, as this is the most optimal for ...
0
votes
0
answers
21
views
Android Studio does not display a pop-up window to generate a signed bundle or APK
I develop an android app with flutter sdk in android studio. but I can't build aab because does not display a pop-up window to generate a signed bundle or APK. when I click "Build > generate a ...
0
votes
2
answers
33
views
Are there any real difference between GlobalScope and CoroutineScope?
I'm trying to understand the difference between the 2.
If a CoroutineScope is not tied to any lifecycle-aware component, then I think they behave the same:
If Im not passing any context to ...
0
votes
0
answers
34
views
Custom timer implemented as foreground service experiments delay after background
I want to implement just a simple timer which runs in background. For this purpose I have wrote it as a foreground service special use (its use does not fit the existent foreground services).
I ...
0
votes
0
answers
26
views
Open custom MIME type/file format with Flutter app
I want to open a file format that I made up, let say .myformat that has a MIME type I made up as well - application/mytype. I've read that I must specify intent-fliter section in AndroidManifext.xml, ...
0
votes
1
answer
32
views
Android App Crashing when Implementing a HiltViewModel
I have the following implementation of a HiltViewModel with a database below:
@Module
@InstallIn(SingletonComponent::class)
object AppDatabaseModule {
@Provides
@Singleton
fun ...
2
votes
1
answer
18
views
Why Android package activities destroy after switching options in coarse/fine location permission?
Either i have open location permission window from my application, either i have go myself in application settings -> Permissions -> Location and playing with the options:
Allow all the time
...
-3
votes
0
answers
36
views
PDF viewer that supports 16Kb page in android kotlin [closed]
I'm currently using this library i want to make it works with 16KB page for new android policy and make it work with progaurd
implementation("com.github.mhiew:android-pdf-viewer:3.2.0-beta.1"...
-2
votes
0
answers
23
views
Android Development error in Gradle script [closed]
Caused by: org.gradle.workers.internal.DefaultWorkerExecutor$WorkExecutionException: A failure occurred while executing com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction
-1
votes
0
answers
34
views
In compose, how to render a composable Fun independently or delay rendering of a composable Fun [closed]
Symptom: When I open a page, it appears blank for a moment before displaying normally.
Cause: ComposeWebView loads slowly; the page will wait for it to load before rendering the entire page.
My ...
0
votes
0
answers
36
views
how to handle errors that occur between in app purchase and server validation of the purchase?
Flow:
user makes in app purchase on android/ios
app store charges user and then sends purchase token to front end app
front end sends purchase token to my backend server for validation and to ...
-1
votes
0
answers
38
views
Android Project Failing to Build/Run [closed]
I've created a new project targeting API 36 in Android Studio, but I'm unable to get it to build/run successfully. I'm not sure what's causing the issue. Would appreciate if anyone could help ...
1
vote
0
answers
47
views
Adding new ReactActivity to run another js bundle
I'm trying to make my React Native Android app to have another Activity, beside MainActivity, be able to run another js bundle. I managed to achieve that with this implementation:
import android.app....
0
votes
0
answers
49
views
Whats the correct way to merge generated AndroidManifest.xml by KSP?
The generated additional AndroidManifest.xml components with KSP
val xml = XML {
indentString = " "
repairNamespaces = false
xmlVersion = XmlVersion....
0
votes
0
answers
25
views
Expo development Android build fails: could not determine the dependencies of task ':app:compileDebugJavaWithJavac'
In the Expo sdk 54 local dev-client build, i.e., npx expo run android, I'm getting the following error. Latest Android Studio and Java 17 (recommended for sdk 54) are installed on Mac. I'm also doing ...