id
int64
28.5M
73.8M
title
stringlengths
15
150
question_body
stringlengths
69
39.4k
body_text
stringlengths
6
29.2k
tags
stringlengths
7
120
score
int64
-19
384
creation_date
stringlengths
20
24
year
int64
-1
2.02k
month
int64
-1
12
hour
int64
-1
23
dayofweek
int64
-1
6
view_count
int64
3
367k
answer_count
int64
0
34
body_len
int64
6
29.2k
title_len
int64
15
150
tag_count
int64
1
6
code_block_cnt
int64
0
17
has_code
bool
2 classes
is_unanswered
bool
2 classes
is_popular
bool
2 classes
is_viral
bool
2 classes
is_highly_voted
bool
2 classes
is_negative
bool
2 classes
score_bucket
stringclasses
5 values
72,367,161
CursorIndexOutOfBoundsException: Index 2 requested, with a size of 2. How to Solve?
<p>When querying the SQLite database, only 2 lines are displayed. Is it possible to fix this error?</p> <pre><code>Cursor cursor = database.rawQuery(&quot;SELECT * FROM Category&quot;, null); cursor.moveToFirst(); for (int i = 0; i &lt; 10; i++) { categoryList.add(new Category(cu...
When querying the SQLite database, only 2 lines are displayed. Is it possible to fix this error? [CODE] Error: [CODE]
java|sqlite|android-studio
-1
2022-05-24T17:34:26.243Z
2,022
5
17
1
35
1
117
83
3
2
true
false
false
false
false
true
negative
72,367,260
Material Swipe To Dismiss in Jetpack Compose with a Column instead of a LazyColumn
<p>In my Jetpack Compose project I want to use Material SwipeToDismiss to delete an item with a swipe. In my composable I use a Column in a list instead of a LazyColumn. The problem is that when the item is deleted a recomposition starts and all following items are also deleted (because the dismissState seems to be the...
In my Jetpack Compose project I want to use Material SwipeToDismiss to delete an item with a swipe. In my composable I use a Column in a list instead of a LazyColumn. The problem is that when the item is deleted a recomposition starts and all following items are also deleted (because the dismissState seems to be the sa...
android|kotlin|android-jetpack-compose|swipe-gesture
0
2022-05-24T17:44:09.890Z
2,022
5
17
1
757
1
644
82
4
1
true
false
false
false
false
false
zero
72,367,280
Flutter cant save to android application directory
<p>I have scoured the internet and am doing what everyone is saying to do but for some reason I can not save a file image or otherwise into the applications folder.</p> <p>I have this method to get the applications directory...</p> <pre><code>Future&lt;Directory&gt; get _localAppPath async { Directory? directory; ...
I have scoured the internet and am doing what everyone is saying to do but for some reason I can not save a file image or otherwise into the applications folder. I have this method to get the applications directory... [CODE] and I use it in my save method like so... [CODE] I check permissions on every app launch so I k...
android|flutter|file|dart|directory
0
2022-05-24T17:45:48.047Z
2,022
5
17
1
216
2
719
50
5
3
true
false
false
false
false
false
zero
72,367,386
Auto fill OTP with SMS User Consent API if once denied
<p>I have implemented the SMS User consent API by following the steps mentioned in the link.</p> <p><a href="https://developers.google.com/identity/sms-retriever/user-consent/request" rel="nofollow noreferrer">API Documentation</a></p> <p>It works fine SMS is retrieved, all good.</p> <p>Issue:</p> <ol> <li>User enters ...
I have implemented the SMS User consent API by following the steps mentioned in the link. API Documentation It works fine SMS is retrieved, all good. Issue: User enters the number and requests for OTP SMS read prompt is shown and the user selects deny Now user moves back and again requests for OTP with the same or diff...
android|android-studio|kotlin
0
2022-05-24T17:54:41.763Z
2,022
5
17
1
226
0
650
54
3
0
false
true
false
false
false
false
zero
72,367,422
Change the order of wrapping widgets helper for Flutter in IntelliJ Idea
<p><a href="https://i.stack.imgur.com/V72SZ.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/V72SZ.png" alt="enter image description here" /></a></p> <p>On pressing <kbd>option</kbd> + <kbd>return</kbd> I see these helpers. Can I change their order?</p>
On pressing option + return I see these helpers. Can I change their order?
flutter|android-studio|intellij-idea
1
2022-05-24T17:57:44.930Z
2,022
5
17
1
34
1
74
72
3
0
false
false
false
false
false
false
low
72,367,508
Xamarin end of support is Nov 2023 for iOS and Android
<p>We have an application built using Xamarin, running in production for last few years ( both iOS and andriod). But, recently, We have been hearing and reading that, Microsoft is sunsetting Xamarin end of support is Nov 2023 for iOS and Android. However Microsoft will not patch/fix bugs after Nov 2022. Is this true?<...
We have an application built using Xamarin, running in production for last few years ( both iOS and andriod). But, recently, We have been hearing and reading that, Microsoft is sunsetting Xamarin end of support is Nov 2023 for iOS and Android. However Microsoft will not patch/fix bugs after Nov 2022. Is this true? Addi...
xamarin|xamarin.android|xamarin.ios|maui
2
2022-05-24T18:04:07.103Z
2,022
5
18
1
1,402
0
609
54
4
0
false
true
false
false
false
false
low
72,367,547
How to make infinite ScrollView with infinite amount of items in SwiftUI
<p>I'm new to IOS and SwiftUI so please correct any incorrect assumptions I make.</p> <p>I need to make a View in SwiftUI that has similar functionality to <code>RecyclerView</code> in android.</p> <p>Specifically what I'm trying to make is a horizontal <code>ScrollView</code> where the displayed item (the one in the c...
I'm new to IOS and SwiftUI so please correct any incorrect assumptions I make. I need to make a View in SwiftUI that has similar functionality to RecyclerView in android. Specifically what I'm trying to make is a horizontal ScrollView where the displayed item (the one in the centre of the screen) is constructed by its ...
ios|swift|android-recyclerview|swiftui|uiscrollview
0
2022-05-24T18:06:33.227Z
2,022
5
18
1
152
1
1,065
72
5
0
false
false
false
false
false
false
zero
72,367,676
Android webview, evaluateJavascript and get values as Array
<p>I am trying to get javascript results using webView.evaluateJavascript method. I can get the return value as type of string. When i changed the variable type from String to String[], it automatically generates this line of code</p> <blockquote> <p>(ValueCallback) new ValueCallback&lt;String[]&gt;().</p> </blockquot...
I am trying to get javascript results using webView.evaluateJavascript method. I can get the return value as type of string. When i changed the variable type from String to String[], it automatically generates this line of code (ValueCallback) new ValueCallback<String[]>(). [CODE] error: incompatible types: <anonymous ...
javascript|java|android|android-webview
0
2022-05-24T18:17:49.467Z
2,022
5
18
1
249
1
381
59
4
1
true
false
false
false
false
false
zero
72,367,817
Appium session not starting - Error: Command 'java -version' errored out: Error: spawn java EACCES
<p>I am trying to start a new Appium session to connect to an emulator but is throwing below error. Not sure what is going wrong. Can someone please help?</p> <p><em>Error An unknown server-side error occurred while processing the command. Original error: Command 'java -version' errored out: Error: spawn java EACCES at...
I am trying to start a new Appium session to connect to an emulator but is throwing below error. Not sure what is going wrong. Can someone please help? Error An unknown server-side error occurred while processing the command. Original error: Command 'java -version' errored out: Error: spawn java EACCES at Process.Child...
android-studio|appium
0
2022-05-24T18:29:28.040Z
2,022
5
18
1
37
0
648
98
2
1
true
true
false
false
false
false
zero
72,367,838
Android SafeArgs Unresolved Reference
<p>I can't seem to be able to get SafeArgs to work:</p> <p>My XML navigation file contains:</p> <pre class="lang-xml prettyprint-override"><code>&lt;fragment android:id=&quot;@+id/nav_adv_list&quot; android:name=&quot;com.example.drawerexample.ui.AdvListFragment&quot; android:label=&quot;@string...
I can't seem to be able to get SafeArgs to work: My XML navigation file contains: [CODE] This is because I need the argument to be false by default and true when coming from a specific fragment. Anyway, my Kotlin code is the following: [CODE] Which is fine because when writing code Android Studio recognizes the binding...
android|kotlin|gradle|navigation|fragment
1
2022-05-24T18:31:14.457Z
2,022
5
18
1
568
2
737
37
5
5
true
false
false
false
false
false
low
72,367,890
How to show progressbar inside recyclerviewItem
<p>I need to show a progress bar inside recycler-view-item.</p> <p>Something like <a href="https://material.io/components/progress-indicators#linear-progress-indicators" rel="nofollow noreferrer">this</a>, the video above this line.</p> <pre><code>To focus user attention, a linear indicator is recommended for displayin...
I need to show a progress bar inside recycler-view-item. Something like this , the video above this line. [CODE]
android-recyclerview|progress-bar
0
2022-05-24T18:35:35.417Z
2,022
5
18
1
8
0
112
47
2
1
true
true
false
false
false
false
zero
72,367,905
Getting error for AdvancedDrawerLayout in kotlin when used in code
<p>When I tried to use the <code>AdvancedDrawer</code> in the code as below I am getting the error as show in the screenshot please help me to solve the error it tells that&quot;Class referenced in the layout file, <code>com.infideap.drawerbehavior.AdvanceDrawerLayout</code>, was not found in the project or the librari...
When I tried to use the AdvancedDrawer in the code as below I am getting the error as show in the screenshot please help me to solve the error it tells that&quot;Class referenced in the layout file, com.infideap.drawerbehavior.AdvanceDrawerLayout , was not found in the project or the libraries&quot; The code of the act...
java|android|kotlin|drawerlayout|mobile-development
0
2022-05-24T18:36:26.873Z
2,022
5
18
1
57
0
488
66
5
2
true
true
false
false
false
false
zero
72,367,929
Fragment.Arguments is null right after being assigned with a non-null value (Peer object GC-ed by Android, but not Mono)
<p><strong>TL;DR:</strong></p> <p>It would appear that Android sometimes garbage-collects the Java side of <a href="https://docs.microsoft.com/en-us/xamarin/android/internals/garbage-collection#cross-vm-object-collections" rel="nofollow noreferrer">framework peer objects</a>, in our case the <code>Bundle</code>. This r...
TL;DR: It would appear that Android sometimes garbage-collects the Java side of framework peer objects , in our case the Bundle . This results in a NullReferenceException when the Bundle is later used in the .NET code, where it is not eligible for garbage collection. This contradicts the helpful article that claims tha...
c#|android|xamarin|android-fragments|garbage-collection
3
2022-05-24T18:39:04.810Z
2,022
5
18
1
77
0
3,204
120
5
4
true
true
false
false
false
false
low
72,368,003
How do I fix this "class 'application' not abstract" error?
<p>I'm trying to run the <a href="https://github.com/GetStream/flutter-samples/tree/main/packages/stream_chat_v1" rel="nofollow noreferrer">example here</a>. It's flutter &amp; I'm trying to run it on an Android emulator. I'm getting an error:</p> <pre><code>&gt; Task :app:compileDebugKotlin FAILED [ ] e: /Users...
I'm trying to run the example here . It's flutter & I'm trying to run it on an Android emulator. I'm getting an error: [CODE] This is the Application.kt file: [CODE] I tried looking at other similar answers, but they were all very specific to the functions and codes that those authors were using. What do I do?
android|flutter|kotlin
1
2022-05-24T18:46:11.137Z
2,022
5
18
1
246
2
311
59
3
2
true
false
false
false
false
false
low
72,368,196
How to use only 'concat' feature of ffmpeg and disable other components in Android?
<p>I want to use <a href="https://github.com/FFmpeg/FFmpeg" rel="nofollow noreferrer">ffmpeg</a> library in my Android application to concatenate mp4 videos. After lots of research I choose <a href="https://github.com/tanersener/ffmpeg-kit" rel="nofollow noreferrer">ffmpeg-kit</a> to work with <code>ffmpeg</code>. The ...
I want to use ffmpeg library in my Android application to concatenate mp4 videos. After lots of research I choose ffmpeg-kit to work with ffmpeg . The problem is that the apk size with the library is large and I want to reduce it. As described here I have to disable unused components of ffmpeg , but I don't know what c...
android|ffmpeg|android-ffmpeg|mobile-ffmpeg
0
2022-05-24T19:03:42.970Z
2,022
5
19
1
28
0
756
83
4
2
true
true
false
false
false
false
zero
72,368,283
Foreground service is sometimes restarting and sometimes never starts when app is removed from open apps
<p>I am implementing location tracker from Android app by using foreground service. The expectation is the foreground service should run even</p> <ol> <li>when app is removed from recent open apps.</li> <li>When app is in open/foreground.</li> <li>When app is in background i.e. app is still open but went to background<...
I am implementing location tracker from Android app by using foreground service. The expectation is the foreground service should run even when app is removed from recent open apps. When app is in open/foreground. When app is in background i.e. app is still open but went to background The case 2 & 3 are working fine bu...
java|android|cordova
0
2022-05-24T19:11:51.690Z
2,022
5
19
1
57
1
822
104
3
3
true
false
false
false
false
false
zero
72,368,297
Service Records and the Android Bluetooth API
<p>I am currently working with Bluetooth SDP on Android devices using android.bluetooth.</p> <p>The Bluetooth Specification mentions Service Records to further describe Services / Communication with them.</p> <p>The Android API though seems to not include them at all. They cannot be set when offering a Service nor can ...
I am currently working with Bluetooth SDP on Android devices using android.bluetooth. The Bluetooth Specification mentions Service Records to further describe Services / Communication with them. The Android API though seems to not include them at all. They cannot be set when offering a Service nor can they be read or f...
java|android|bluetooth|sdp
0
2022-05-24T19:12:51.560Z
2,022
5
19
1
37
0
720
45
4
2
true
true
false
false
false
false
zero
72,368,353
Jetpack Compose Tapjacking: Filter touches on obscured UI
<p>While there is abundant documentation on <a href="https://developer.android.com/reference/android/view/View#Security" rel="nofollow noreferrer">Tapjacking in tradition XML views in Android</a> to prevent malicious apps from interacting with sensitive information, there appears to be none around the issue for Jetpack...
While there is abundant documentation on Tapjacking in tradition XML views in Android to prevent malicious apps from interacting with sensitive information, there appears to be none around the issue for Jetpack Compose. Is there an equivalent to filterTouchesWhenObscured for @Composable s, was this issue solved at a mo...
android|android-layout|security|android-jetpack-compose|android-jetpack
2
2022-05-24T19:17:25.563Z
2,022
5
19
1
151
2
415
57
5
0
false
false
false
false
false
false
low
72,368,371
Can't get string from sharedPreferences in Fragment
<p>I'm an experienced Android Developer (Kotlin) and I'm currently working on a Java app and I can't manage to get a simple string from shared preferences.</p> <p>This is my code</p> <p>LoginActivity.java</p> <pre><code>public static final String USERNAME_KEY = &quot;currentusername&quot;; vialApp.loginAsync(e...
I'm an experienced Android Developer (Kotlin) and I'm currently working on a Java app and I can't manage to get a simple string from shared preferences. This is my code LoginActivity.java [CODE] This is saving correctly, if I try to get the prefs in this activity the same way as I do in the Fragment, it gets the userna...
java|android|sharedpreferences
0
2022-05-24T19:19:04.890Z
2,022
5
19
1
30
1
604
51
3
2
true
false
false
false
false
false
zero
72,368,382
Android Java Correct way to call Threads
<p><strong>Problem</strong></p> <p>As a beginner in Android coming from Java and C# backends, I'm not sure how to avoid the warning that 'too much work is being done in the main Thread'. Since I'm already using CompletableFuture to make my HTTP calls, I think I'm not using the Main thread anymore.</p> <p><strong>Things...
Problem As a beginner in Android coming from Java and C# backends, I'm not sure how to avoid the warning that 'too much work is being done in the main Thread'. Since I'm already using CompletableFuture to make my HTTP calls, I think I'm not using the Main thread anymore. Things I tried: Ttried wrapping the controller a...
java|android|android-asynctask|completable-future
0
2022-05-24T19:20:10.080Z
2,022
5
19
1
65
0
1,828
40
4
6
true
true
false
false
false
false
zero
72,368,398
how to convert timestamp to date for recyclerview using Kotlin, Firebase android studio
<p>I have a working recyclerView that shows timestamp values I need to see the date and time if possible. I am fetching data from Firebase's real-time database</p> <p>this is my database <a href="https://i.stack.imgur.com/FZYOl.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/FZYOl.png" alt="database"...
I have a working recyclerView that shows timestamp values I need to see the date and time if possible. I am fetching data from Firebase's real-time database this is my database this is my fragment [CODE] I can even accept the best way to insert the current time and date in the firebase database just to complete my proj...
android|firebase|kotlin|android-recyclerview
1
2022-05-24T19:21:30.330Z
2,022
5
19
1
223
2
351
87
4
2
true
false
false
false
false
false
low
72,368,442
"The method 'SplashScreen' isn't defined for the type 'MyApp'.". I have tried a lot of things and nothing. Any solution?
<p>main.dart:</p> <pre><code>import 'package:flutter/material.dart' show BuildContext, Colors, MaterialApp, StatelessWidget, ThemeData, VisualDensity, Widget, runApp; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. Widget build(BuildContext...
main.dart: [CODE] splashScreen.dart(2nd page) [CODE] ///The code isn't working and its saying that&quot;The method 'SplashScreen' isn't defined for the type 'MyApp'&quot;. I know the solution probably is on the &quot;Container&quot; but I can't solve it.
android|ios|flutter|dart|mobile
0
2022-05-24T19:26:20.050Z
2,022
5
19
1
83
1
254
120
5
2
true
false
false
false
false
false
zero
72,368,588
Why the webrtc android camera stream is rotated at endpoint?
<p>I am sending camera video from android to a janus server, but when I check from website, the video is rotated, Do you know why and How should I fix this?</p> <p><img src="https://i.stack.imgur.com/crkdn.png" alt="image demo" /></p>
I am sending camera video from android to a janus server, but when I check from website, the video is rotated, Do you know why and How should I fix this?
webrtc|android-camera|android-camera2|webrtc-android|janus-gateway
0
2022-05-24T19:37:24.707Z
2,022
5
19
1
56
1
153
60
5
0
false
false
false
false
false
false
zero
72,368,660
How to use deferred components in Flutter (with a focus on assets-only components)?
<p>I have a Flutter app having size around 850 MB (AAB). Most of these 850MB are assets- video files (750 MB). The solution to publish it in the Google Play Store is to use deferred components (or to use private server to download video files after installation- I don't want to do this at this stage).</p> <p>The proble...
I have a Flutter app having size around 850 MB (AAB). Most of these 850MB are assets- video files (750 MB). The solution to publish it in the Google Play Store is to use deferred components (or to use private server to download video files after installation- I don't want to do this at this stage). The problem is I fou...
android|flutter|dart|google-play
1
2022-05-24T19:44:57.253Z
2,022
5
19
1
261
0
2,850
83
4
7
true
true
false
false
false
false
low
72,368,687
How to force variant selection withResolvedConfiguration.getResolvedArtifacts?
<p>I'm working with a large, multi-module Android application, and I'm trying to define a Gradle task that collects the jars of all runtime dependencies. I'm trying something like this in <code>app/build.gradle</code>:</p> <pre><code>task collectDeps { doLast { configurations.releaseRuntimeClasspath.resolve...
I'm working with a large, multi-module Android application, and I'm trying to define a Gradle task that collects the jars of all runtime dependencies. I'm trying something like this in app/build.gradle : [CODE] I've used this snippet in the past on other Java projects, so I know that it conceptually works; this is just...
gradle|android-gradle-plugin
1
2022-05-24T19:47:33.557Z
2,022
5
19
1
326
1
1,655
78
2
2
true
false
false
false
false
false
low
72,368,708
get row from a cursor based on the id that is a column
<p>currently in my cursor that I recieve on method <code>setupChangeReasons(Cursor cursor)</code>, I have a list of records that I get from the database, I have a variable &quot;mChangeReasonId&quot;, if this variable is 0 nothing happens, but if it has another value what I need is to get all the data of the row of thi...
currently in my cursor that I recieve on method setupChangeReasons(Cursor cursor) , I have a list of records that I get from the database, I have a variable &quot;mChangeReasonId&quot;, if this variable is 0 nothing happens, but if it has another value what I need is to get all the data of the row of this record, all t...
android
0
2022-05-24T19:49:17.723Z
2,022
5
19
1
8
0
645
54
1
1
true
true
false
false
false
false
zero
72,368,888
Jetpack Compose: Spacer vs Modifier.padding()
<p>We can add a spacing between two components in compose through:</p> <ul> <li><code>Spacer()</code>, and;</li> <li><code>Modifier.padding()</code> of the Component.</li> </ul> <p>Is there any situation where one of those two ways is more desirable than the other?</p>
We can add a spacing between two components in compose through: Spacer() , and; Modifier.padding() of the Component. Is there any situation where one of those two ways is more desirable than the other?
android|android-jetpack-compose
0
2022-05-24T20:05:42.633Z
2,022
5
20
1
94
0
201
45
2
0
false
true
false
false
false
false
zero
72,368,909
converted my flutter into apk file and it wont work
<p>i have a flutter app that has firebase and firestore as backend, it works fine on the emulator when i changed it into apk, but on the real device on the log in page the loading circle get stuck and the app wont proceed the log in procedure.</p> <p>i don't why does this happen? it works fine as normal flutter on the ...
i have a flutter app that has firebase and firestore as backend, it works fine on the emulator when i changed it into apk, but on the real device on the log in page the loading circle get stuck and the app wont proceed the log in procedure. i don't why does this happen? it works fine as normal flutter on the device but...
android|flutter|firebase|dart|apk
0
2022-05-24T20:07:39.793Z
2,022
5
20
1
43
2
425
51
5
0
false
false
false
false
false
false
zero
72,368,925
Flutter Container with Text as child changes size depending on value of text
<p>I have a Container widget with a Text widget as child that is used to set the title for my appbar. The problem is that the container takes different sizes if the value for the text widget is given directly as a string or if it is dynamically set from an object.</p> <p><strong>Here are some examples:</strong></p> <p>...
I have a Container widget with a Text widget as child that is used to set the title for my appbar. The problem is that the container takes different sizes if the value for the text widget is given directly as a string or if it is dynamically set from an object. Here are some examples: Scenario 1: [CODE] output for scen...
android|ios|flutter|mobile|widget
0
2022-05-24T20:09:44.530Z
2,022
5
20
1
206
1
642
76
5
2
true
false
false
false
false
false
zero
72,369,044
react native android Task :expo-modules-core:compileDebugKotlin FAILED
<p>During the build process using <code>npx react-native run-android</code> I get the following error:</p> <pre><code>&gt; Task :expo-modules-core:compileDebugKotlin FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use '--warning-mode all' to show the individu...
During the build process using npx react-native run-android I get the following error: [CODE] About my project: It was 1st developed using expo sdk, then ejected (by other developer), I cloned the repo on my local machine and tried the following steps to build and run the app: [CODE] Then after these steps, I got some ...
java|android|react-native|gradle
0
2022-05-24T20:21:34.637Z
2,022
5
20
1
601
0
810
70
4
4
true
true
false
false
false
false
zero
72,369,047
How to add a local module as dependency to a project in Android Studio?
<p>How can I add a module of a local project as dependency to another project?</p> <p>I tried the following:</p> <ol> <li>Add to <code>settings.gradle</code>:</li> </ol> <pre><code>include ':app', ':module' project(':module').projectDir = new File('/path/to/module') </code></pre> <ol start="2"> <li>Add to project <code...
How can I add a module of a local project as dependency to another project? I tried the following: Add to settings.gradle : [CODE] Add to project build.gradle : [CODE] Add to app build.gradle : [CODE] But this fails to build with error: Build file '/path/to/module/build.gradle' line: 3 A problem occurred evaluating pro...
android|android-studio|gradle
0
2022-05-24T20:21:57.277Z
2,022
5
20
1
128
1
906
71
3
3
true
false
false
false
false
false
zero
72,369,154
Sing apk file of my carrier app with the same certificate (kik1, kic1, kid1 keys) found on the SIM
<p>I have an android application that attempts to update the APN settings. But I get this error: &quot;No permission to access APN settings&quot;.</p> <p>So, I needs to have the UICC carrier privliges in my app to be able to update APN and CarrierConfig settings. I have the required keys of the SIM card, like: Kik1, ki...
I have an android application that attempts to update the APN settings. But I get this error: &quot;No permission to access APN settings&quot;. So, I needs to have the UICC carrier privliges in my app to be able to update APN and CarrierConfig settings. I have the required keys of the SIM card, like: Kik1, kic1, and ki...
java|android|permissions|euiccmanager
0
2022-05-24T20:33:31.310Z
2,022
5
20
1
18
0
746
98
4
0
false
true
false
false
false
false
zero
72,369,293
Why don't load intersticial add?
<p>I updated Android Studio and now I don't know how to implement the adds correctly. All the aplications that I did had a different structure of gradle than the one it is created now. With the code ca-app-pub-3940256099942544~3347511713 from the test ad it works fine, but if I add the code from my ad it doesn't work, ...
I updated Android Studio and now I don't know how to implement the adds correctly. All the aplications that I did had a different structure of gradle than the one it is created now. With the code ca-app-pub-3940256099942544~3347511713 from the test ad it works fine, but if I add the code from my ad it doesn't work, mes...
android-studio|kotlin|admob|gradle-plugin|smartphone
0
2022-05-24T20:48:20.643Z
2,022
5
20
1
23
0
525
32
5
3
true
true
false
false
false
false
zero
72,369,309
SU executable and device not being Rooted
<p>I am doing research for good way to root device in 2022. I reached this orginal post here: <br> <a href="https://stackoverflow.com/questions/1101380/determine-if-running-on-a-rooted-device">Determine if running on a rooted device</a> <br> I am confused with this explaination in one of the answers given: <br> <br> <...
I am doing research for good way to root device in 2022. I reached this orginal post here: Determine if running on a rooted device I am confused with this explaination in one of the answers given: The existence of the &quot;su&quot; executable doesn't necessarily mean the device has been rooted What does it mean?
java|android|kotlin
1
2022-05-24T20:49:33.447Z
2,022
5
20
1
29
0
314
41
3
0
false
true
false
false
false
false
low
72,369,349
Google Chrome 101 on Android shows TAB key on soft keyboard instead of ENTER for HTML input field
<p>I am using Chrome 101 on Android 11. Setting the focus on a HTML input field brings up the soft keyboard. In earlier versions of Chrome, the soft keyboard then had the ENTER key on the lower right: <a href="https://i.stack.imgur.com/Eiirh.png" rel="nofollow noreferrer">Android Soft Keyboard ENTER key</a></p> <p>But ...
I am using Chrome 101 on Android 11. Setting the focus on a HTML input field brings up the soft keyboard. In earlier versions of Chrome, the soft keyboard then had the ENTER key on the lower right: Android Soft Keyboard ENTER key But now it shows the TAB key instead, for any input form field other than the last one in ...
android|android-softkeyboard|enter|html-input|google-chrome-android
2
2022-05-24T20:54:01.503Z
2,022
5
20
1
326
2
453
97
5
0
false
false
false
false
false
false
low
72,369,526
Get the text of a web and create views with them in android... Parsing?
<p>I want to get for my App something similar to what the &quot;pocket&quot; application does.</p> <p>This application can display the links as <strong>&quot;web view&quot;</strong> or &quot;<strong>article view</strong>&quot;. What I am trying to do is precisely this, after obtaining the link of a website, to be able ...
I want to get for my App something similar to what the &quot;pocket&quot; application does. This application can display the links as &quot;web view&quot; or &quot; article view &quot;. What I am trying to do is precisely this, after obtaining the link of a website, to be able to take the text and create an article vie...
android|web|html-parsing
0
2022-05-24T21:12:34.930Z
2,022
5
21
1
7
0
854
71
3
0
false
true
false
false
false
false
zero
72,369,541
Peerjs not sending stream between Android and IOS WebRTC
<p>I am trying to create a video conference web app using peer/getUserMedia. when I tried to make the connection stream sending/receiving both platform not working I want to make it so the other user can see/hear local user thats in the video session.</p> <p>this is my code</p> <pre><code>let localVideo = document.getE...
I am trying to create a video conference web app using peer/getUserMedia. when I tried to make the connection stream sending/receiving both platform not working I want to make it so the other user can see/hear local user thats in the video session. this is my code [CODE] // html [CODE] any help ???
javascript|webrtc|peerjs|webrtc-android|webrtc-ios
0
2022-05-24T21:14:15.917Z
2,022
5
21
1
51
0
299
56
5
2
true
true
false
false
false
false
zero
72,369,603
How do I remove an entry in RealtimeDatabase within onBindViewHolder?
<p>When I click a button, I want to delete an entry in a ReyclerView that is in a constraint layout on Firebase Realtime Database. Unfortunately I can't do that. How do I get the Chil ID to remove the respective entry?</p> <pre><code>public void onBindViewHolder(@NonNull PlacesAdapter.MyAdapter holder, @SuppressLint(&...
When I click a button, I want to delete an entry in a ReyclerView that is in a constraint layout on Firebase Realtime Database. Unfortunately I can't do that. How do I get the Chil ID to remove the respective entry? [CODE]
android|firebase
0
2022-05-24T21:21:04.240Z
2,022
5
21
1
8
0
222
69
2
1
true
true
false
false
false
false
zero
72,369,722
Swiping Horizontal Pager looses the item state when scrolled back and forth - JetpackCompose
<p>I am making a quiz app. It uses Horizontal pager, in each item there is a question and 4 option radio buttons.i have 10 items in horizontal pager. if i reach to last page and swipe back to first the selections made are gone and the page is loaded freshly. How to save the state of the content item even when it is scr...
I am making a quiz app. It uses Horizontal pager, in each item there is a question and 4 option radio buttons.i have 10 items in horizontal pager. if i reach to last page and swipe back to first the selections made are gone and the page is loaded freshly. How to save the state of the content item even when it is scroll...
android|kotlin|android-jetpack-compose|jetpack-compose-accompanist
0
2022-05-24T21:33:43.263Z
2,022
5
21
1
403
0
501
92
4
1
true
true
false
false
false
false
zero
72,369,795
How to declare padding for custom layout in Jetpack Compose 1.2.0
<p>In version 1.2.0 of Jetpack Compose a padding parameter is being asked for by the Scaffold, <code>content</code> section.</p> <p>How do I declare padding values in this section, when they have already been specified in my custom <code>LazyColumn</code>? All I get is <code>paddp</code>.</p> <blockquote> <p><code>Cont...
In version 1.2.0 of Jetpack Compose a padding parameter is being asked for by the Scaffold, content section. How do I declare padding values in this section, when they have already been specified in my custom LazyColumn ? All I get is paddp . Content padding parameter it is not used [CODE]
android|kotlin|android-layout|android-jetpack-compose
0
2022-05-24T21:43:14.990Z
2,022
5
21
1
521
2
290
65
4
1
true
false
false
false
false
false
zero
72,369,944
How can I use my form inside fragment to add data into the database?
<p>So I created an app for the admin where they add job services, modify, delete, update and check booked services. I created an activity and inside is a fragment with 5 tabs and each tab has its own function. I designed an insert form on the first tab so that users when they add data and click on submit it, will be ad...
So I created an app for the admin where they add job services, modify, delete, update and check booked services. I created an activity and inside is a fragment with 5 tabs and each tab has its own function. I designed an insert form on the first tab so that users when they add data and click on submit it, will be added...
java|android|xml|android-fragments
0
2022-05-24T22:03:31.647Z
2,022
5
22
1
22
0
668
68
4
4
true
true
false
false
false
false
zero
72,369,981
Google Play rejects prominent disclosure about uploading users' Contact List
<p>We have an android app in Google Play that keeps getting removed for violating the Spyware policy. This is because our app uploads the users’ Contact List and according to Google this is done without a “prominent disclosure”, but we do in fact display a disclosure, according to our understanding of the guidelines (l...
We have an android app in Google Play that keeps getting removed for violating the Spyware policy. This is because our app uploads the users’ Contact List and according to Google this is done without a “prominent disclosure”, but we do in fact display a disclosure, according to our understanding of the guidelines (link...
android|google-play|privacy-policy
0
2022-05-24T22:09:57.497Z
2,022
5
22
1
419
1
1,369
76
3
0
false
false
false
false
false
false
zero
72,369,983
Fossil Gen 5 unlock bootloader
<p>Hey okay so the Fossil Gen 5 has been deemed a paperweight for unlocking and putting a custom OS on (AsteroidOS). Due to no debugging over Bluetooth or wifi enabled upon rebooting to the bootloader. However I did manage to get into the watches root storage. And was wondering if anyone would know if it's possible to ...
Hey okay so the Fossil Gen 5 has been deemed a paperweight for unlocking and putting a custom OS on (AsteroidOS). Due to no debugging over Bluetooth or wifi enabled upon rebooting to the bootloader. However I did manage to get into the watches root storage. And was wondering if anyone would know if it's possible to edi...
android|fossil
0
2022-05-24T22:10:06.257Z
2,022
5
22
1
67
0
1,012
30
2
0
false
true
false
false
false
false
zero
72,370,026
How to initialize data before launch a the fragment Android Studio / Java
<p>I initialize a map in my main activity, the problem is that i need this map to initialize some variables in my launch fragment so the fragment is update before the map.</p> <p>I initialize my map thanks to an event listener to read on my database</p> <p>MainActivity</p> <pre><code>protected void onCreate(Bundle save...
I initialize a map in my main activity, the problem is that i need this map to initialize some variables in my launch fragment so the fragment is update before the map. I initialize my map thanks to an event listener to read on my database MainActivity [CODE] [CODE] So my fragment launchs him and use the map to initial...
java|android|android-studio|android-fragments|fragment
0
2022-05-24T22:16:19.680Z
2,022
5
22
1
63
0
474
73
5
3
true
true
false
false
false
false
zero
72,370,097
Development of an API
<p>I hope you are doing well. I have a project to do at school, it's about developing an API to link three applications from different platforms to a single database. It will be a desktop, mobile and web application. But problem, I've never developed an API and I don't know where to start. I would like you to tell me h...
I hope you are doing well. I have a project to do at school, it's about developing an API to link three applications from different platforms to a single database. It will be a desktop, mobile and web application. But problem, I've never developed an API and I don't know where to start. I would like you to tell me how ...
android|api|web|cross-platform|desktop-application
-1
2022-05-24T22:25:58.557Z
2,022
5
22
1
22
1
642
21
5
0
false
false
false
false
false
true
negative
72,370,112
Type mismatch: inferred type is Boolean? but Boolean was expected
<p>Please assist,</p> <p>I have upgraded my flutter to 3.0.1 • channel stable ,</p> <p>dart sdk version to Dart SDK version: 2.17.1 (stable) (Tue May 17 17:58:21 2022 +0000) on &quot;windows_x64&quot;.</p> <p>kotlin version ext.kotlin_version = '1.6.20' in /android/build.gradle file.</p> <p>When I try to start my app I...
Please assist, I have upgraded my flutter to 3.0.1 • channel stable , dart sdk version to Dart SDK version: 2.17.1 (stable) (Tue May 17 17:58:21 2022 +0000) on &quot;windows_x64&quot;. kotlin version ext.kotlin_version = '1.6.20' in /android/build.gradle file. When I try to start my app I get the following error [CODE]...
android|flutter|kotlin|dart
0
2022-05-24T22:29:00.647Z
2,022
5
22
1
726
1
451
65
4
3
true
false
false
false
false
false
zero
72,370,114
Android app doesn't work while WiFi is on. (With Firebase and Admob)
<p>My app works perfectly fine with mobile data but it doesn't (Firebase SDKs and Google Admob) when wifi is on.</p> <p>With FirebaseAuth it doesn't return anything back (no log, no error) after I use fbAuth.signInAnonymously().</p> <p>With Admob, I get &quot;Network error&quot; message in log when I print loadAdError....
My app works perfectly fine with mobile data but it doesn't (Firebase SDKs and Google Admob) when wifi is on. With FirebaseAuth it doesn't return anything back (no log, no error) after I use fbAuth.signInAnonymously(). With Admob, I get &quot;Network error&quot; message in log when I print loadAdError.message under onA...
android|firebase|firebase-authentication|libgdx|admob
0
2022-05-24T22:29:06.090Z
2,022
5
22
1
138
1
779
68
5
2
true
false
false
false
false
false
zero
72,370,161
Where does the context of a service declared in the AndroidManifest.xml comes from?
<p>I have made a mistake on my app by trying to access the context of a service (that was declared in the <code>AndroidManifest</code>) right at its constructor, like this:</p> <pre><code>class MyService : Service() { private val myObj = MyObjectThatNeedsContext(this) (...) } </code></pre> <p>I only realized ...
I have made a mistake on my app by trying to access the context of a service (that was declared in the AndroidManifest ) right at its constructor, like this: [CODE] I only realized the problem after seeing in the Google Play Console a couple of crashes caused by NullPointerException , pointing at the instantiation of m...
android|android-service|android-manifest
1
2022-05-24T22:36:11.443Z
2,022
5
22
1
20
0
891
83
3
1
true
true
false
false
false
false
low
72,370,177
Android Studio, Db connection error: Something unusual has occurred to cause the driver to fail. Please report this exception
<p>I'm opening this discussion because I have a big issue regarding a school project in Android that I'm working on. Right now I have a free database with the online service ElephantSQL.</p> <p>The database is perfect because when I try to connect it to a project written in java using IntelliJIDEA everything works fine...
I'm opening this discussion because I have a big issue regarding a school project in Android that I'm working on. Right now I have a free database with the online service ElephantSQL. The database is perfect because when I try to connect it to a project written in java using IntelliJIDEA everything works fine. However,...
android|database|postgresql
2
2022-05-24T22:39:16.900Z
2,022
5
22
1
133
1
958
125
3
3
true
false
false
false
false
false
low
72,370,253
Implementing snapConfiguration to SliverPersistentHeader
<p>I am trying to implement snap feature to SliverPersistentHeader but couldn't figure it out and couldn't find a good documentation on this.</p> <p>My code:</p> <pre><code> class MyDelegate extends SliverPersistentHeaderDelegate { double he; MyDelegate ({required this.he}) : super(); @o...
I am trying to implement snap feature to SliverPersistentHeader but couldn't figure it out and couldn't find a good documentation on this. My code: [CODE] Floating is set to true. I am getting error message for vsync being null. I couldn't make it work. I need help on implementing snap feature for SliverPersistenHeader...
android|ios|flutter|flutter-animation|flutter-sliver
1
2022-05-24T22:51:22.383Z
2,022
5
22
1
146
1
321
56
5
1
true
false
false
false
false
false
low
72,370,547
Flutter google sign in package
<p>the error ocde</p> <p>Launching lib/main.dart on iPhone SE (3rd generation) in debug mode... Running pod install... 1,263ms CocoaPods' output: ↳ Preparing</p> <pre><code>Analyzing dependencies Inspecting targets to integrate Using `ARCHS` setting to build architectures of...
the error ocde Launching lib/main.dart on iPhone SE (3rd generation) in debug mode... Running pod install... 1,263ms CocoaPods' output: ↳ Preparing [CODE] Error output from CocoaPods: [CODE] Error running pod install Error launching application on iPhone SE (3rd generation). confidencewangoho@Confidences-MacBook-Air io...
android|ios|xcode|flutter|plugins
0
2022-05-24T23:41:08.763Z
2,022
5
23
1
62
0
323
30
5
2
true
true
false
false
false
false
zero
72,370,557
Android studio scrollview with clickable "cards" and limiting how many are visible on screen
<p>I'm having trouble implementing a scrollview with card-like elements (basically just rows of imageviews), while also limiting how many are visible on screen at any time. I would like all cards to be the same height, but I only want four to be visible on screen. So obviously if there are more than four, you'd need to...
I'm having trouble implementing a scrollview with card-like elements (basically just rows of imageviews), while also limiting how many are visible on screen at any time. I would like all cards to be the same height, but I only want four to be visible on screen. So obviously if there are more than four, you'd need to sc...
java|android|android-studio|mobile|scrollview
0
2022-05-24T23:42:32.330Z
2,022
5
23
1
39
1
741
92
5
0
false
false
false
false
false
false
zero
72,370,597
how can i make screen have multi screens like iOS or android multi tasking action flutter app
<p>Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( resizeToAvoidBottomInset: true, backgroundColor: Colors.white, drawer: SideBar(_changeIndexNumber), appBar: AppBar( backgroundColor: Colors.transparent, iconTheme: IconThemeData(color: Colors.black), elevation...
Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( resizeToAvoidBottomInset: true, backgroundColor: Colors.white, drawer: SideBar(_changeIndexNumber), appBar: AppBar( backgroundColor: Colors.transparent, iconTheme: IconThemeData(color: Colors.black), elevation: 0...
android|ios|flutter|flutter-dependencies|flutter-animation
-1
2022-05-24T23:49:13.220Z
2,022
5
23
1
40
1
767
93
5
0
false
false
false
false
false
true
negative
72,370,637
How can I perform a long click when using an external keyboard to navigate an Android application?
<p>I am implementing accessibility in my app, including keyboard navigation. Currently, there is some selectable text which shows the context menu when the user long clicks/long presses the text.</p> <p>When using an external keyboard to navigate, there is no way to open this context menu that I've found.</p> <p>I want...
I am implementing accessibility in my app, including keyboard navigation. Currently, there is some selectable text which shows the context menu when the user long clicks/long presses the text. When using an external keyboard to navigate, there is no way to open this context menu that I've found. I want to show the cont...
android|keyboard|accessibility|contextmenu|onlongclicklistener
0
2022-05-24T23:55:09.193Z
2,022
5
23
1
27
0
857
98
5
2
true
true
false
false
false
false
zero
72,370,809
How to get direct current link in webview android like a browser?
<p>I'm making app which allow surf web and download video. But I can get current link request for this task. Example: when you suft facebook.watch on the pc. You can get direct link video on searchbar like this: <a href="https://www.facebook.com/watch?v=693660431865152" rel="nofollow noreferrer">https://www.facebook.co...
I'm making app which allow surf web and download video. But I can get current link request for this task. Example: when you suft facebook.watch on the pc. You can get direct link video on searchbar like this: https://www.facebook.com/watch?v=693660431865152 . And in tiktok is same. How can I get link in webview in andr...
android|kotlin|video|webview
0
2022-05-25T00:28:32.573Z
2,022
5
0
2
53
0
392
65
4
1
true
true
false
false
false
false
zero
72,370,894
Stream image from Android with FFMPEG
<p>I'm currently receiving images from an external source as byte array and I would like to send it as raw video format via ffmpeg to a stream URL, where I have a RTSP server that receives RTSP streams (<a href="https://stackoverflow.com/questions/41956604/how-can-we-feed-bytearray-of-an-image-in-input-of-ffmpeg-for-do...
I'm currently receiving images from an external source as byte array and I would like to send it as raw video format via ffmpeg to a stream URL, where I have a RTSP server that receives RTSP streams ( a similar unanswered question ). However, I haven't worked with FFMPEG in Java, so i can't find an example on how to do...
python|java|android|ffmpeg|stdin
4
2022-05-25T00:46:56.657Z
2,022
5
0
2
643
1
1,126
37
5
3
true
false
false
false
false
false
low
72,371,020
An app installed from google play does not show nowhere (Home Screen, Drawer, and Widgets)
<p>I created open testing for my app on play store. Installed the app, but the app does not appear nowhere on my phone, hence cannot be opened.</p> <p>It's not on Home Screen, Drawer, and Widgets. But in the app list of the setting app, it appear as installed app. <a href="https://i.stack.imgur.com/ngwvY.jpg" rel="nofo...
I created open testing for my app on play store. Installed the app, but the app does not appear nowhere on my phone, hence cannot be opened. It's not on Home Screen, Drawer, and Widgets. But in the app list of the setting app, it appear as installed app. here On google play, there is only &quot;uninstall&quot; button, ...
android|flutter|google-play
0
2022-05-25T01:14:09.520Z
2,022
5
1
2
88
2
509
90
3
0
false
false
false
false
false
false
zero
72,371,062
Navigation Drawer does not respond on touch
<p>I am writing an app, where I am combining activivties and navigation drawer, which I have never tried before. Here is the problem: when I am trying to access menu elements by clicking from MainActivity, everything works perfect and clicked elements pass on to other activities. But when I am trying to access drawer f...
I am writing an app, where I am combining activivties and navigation drawer, which I have never tried before. Here is the problem: when I am trying to access menu elements by clicking from MainActivity, everything works perfect and clicked elements pass on to other activities. But when I am trying to access drawer from...
android
0
2022-05-25T01:26:08.067Z
2,022
5
1
2
15
0
574
43
1
2
true
true
false
false
false
false
zero
72,371,084
Flutter two finger gestures
<p>I'm working on a launcher app with gestures settings and I'm looking for a way to achieve two-finger swipe up and down gestures, i found out that it can be achieved by using <a href="https://api.flutter.dev/flutter/widgets/RawGestureDetector-class.html" rel="nofollow noreferrer">RawGestureDetector</a> and <a href="h...
I'm working on a launcher app with gestures settings and I'm looking for a way to achieve two-finger swipe up and down gestures, i found out that it can be achieved by using RawGestureDetector and MultiDragGestureRecognizer , but I have no idea how to do it, can anyone share a code example or explain how to do it i tri...
android|flutter|dart|mobile
1
2022-05-25T01:30:18.167Z
2,022
5
1
2
351
1
376
27
4
1
true
false
false
false
false
false
low
72,371,133
intent-filter is not allowed?
<p>I'm getting an <code>&quot;Element intent-filter is not allowed here&quot;</code> error. The instructions were to simply cut and paste the intent filter from <code>WeatherActivity</code> to <code>MainMenuActivity</code> since <code>WeatherActivity</code> was created first but it doesn't like it when I do it. What am...
I'm getting an &quot;Element intent-filter is not allowed here&quot; error. The instructions were to simply cut and paste the intent filter from WeatherActivity to MainMenuActivity since WeatherActivity was created first but it doesn't like it when I do it. What am I doing wrong? [CODE]
android|android-studio|android-intent|intentfilter|mobile-development
0
2022-05-25T01:38:30.090Z
2,022
5
1
2
46
1
287
29
5
1
true
false
false
false
false
false
zero
72,371,238
Google Play Store app releases/updates being rejected not adhering to policies
<p>Does anyone know of a way to speak to someone at Google regarding releasing apps on the Play Store? We've been encountering endless issues with our apps apparently not adhering to their policies, and every time a build is rejected it just comes with a blanket template response for the policies it doesn't adhere to, ...
Does anyone know of a way to speak to someone at Google regarding releasing apps on the Play Store? We've been encountering endless issues with our apps apparently not adhering to their policies, and every time a build is rejected it just comes with a blanket template response for the policies it doesn't adhere to, but...
android|google-play|google-play-console
0
2022-05-25T02:00:11.690Z
2,022
5
2
2
42
0
1,514
78
3
0
false
true
false
false
false
false
zero
72,371,265
expo exported for android not working on my device
<p>when I finished a HelloWorld project I exported it using <code>expo build</code>, moved it to my device <code>Huawei y5 lite (DRA-LX5)</code>, and tried to install it. Still, it was saying <code>file format not supported</code>, but on another device, it installed and ran just as expected, why?</p>
when I finished a HelloWorld project I exported it using expo build , moved it to my device Huawei y5 lite (DRA-LX5) , and tried to install it. Still, it was saying file format not supported , but on another device, it installed and ran just as expected, why?
android|react-native|expo|export|apk
0
2022-05-25T02:04:23.933Z
2,022
5
2
2
53
0
259
50
5
0
false
true
false
false
false
false
zero
72,371,268
Is there any way to get Android Phone Charge Voltage?
<p>Not Battery Voltage But Charge Voltage,Such as 9V,12V for what fast charge phone has; I want to code a power monitor but only i can get is charge current...thanks</p>
Not Battery Voltage But Charge Voltage,Such as 9V,12V for what fast charge phone has; I want to code a power monitor but only i can get is charge current...thanks
java|android
0
2022-05-25T02:04:54.717Z
2,022
5
2
2
31
0
162
53
2
0
false
true
false
false
false
false
zero
72,371,272
How to get longest streak from an array of int Kotlin
<p>I am working on a story and am wondering how I can solve this problem similar to my current work at work, so a weekly streak is defined as one or more consecutive active weeks in which a user has worked out. So say you are given an array of active user days, we need find the length of the longest active weekly strea...
I am working on a story and am wondering how I can solve this problem similar to my current work at work, so a weekly streak is defined as one or more consecutive active weeks in which a user has worked out. So say you are given an array of active user days, we need find the length of the longest active weekly streak. ...
android|kotlin
0
2022-05-25T02:05:36.167Z
2,022
5
2
2
105
3
945
53
2
1
true
false
false
false
false
false
zero
72,371,440
React Native, Drawer navigation not show, the app is closes
<p>When I try to access the Drawer the app closes and does not show me any type of error, I have not been able to solve the problem and be able to view the Draw.</p> <p>This function is the one that generates problems for me, it should be noted that I am new to react and it is most likely that I have an error in the na...
When I try to access the Drawer the app closes and does not show me any type of error, I have not been able to solve the problem and be able to view the Draw. This function is the one that generates problems for me, it should be noted that I am new to react and it is most likely that I have an error in the navigation c...
javascript|android|reactjs|react-native|react-navigation
0
2022-05-25T02:42:11.200Z
2,022
5
2
2
77
0
405
59
5
2
true
true
false
false
false
false
zero
72,371,504
Android Mobile Application development using Bonita
<p>I am implementing the mobile application using the Bonita API and I have created the android application.</p> <p>I followed the instructions in this documentation <a href="https://documentation.bonitasoft.com/bonita/2022.1/api/create-your-first-project-with-the-engine-apis-and-maven" rel="nofollow noreferrer">Create...
I am implementing the mobile application using the Bonita API and I have created the android application. I followed the instructions in this documentation Create your first application with Bonita Java APIs and there was the duplicate class errors in javax.activation . I suppressed the duplicate classes by adding the ...
java|android|android-studio|bonita
0
2022-05-25T02:56:35.090Z
2,022
5
2
2
22
0
664
51
4
2
true
true
false
false
false
false
zero
72,371,573
How to communicate via TCP/IP through local Wi-Fi (Android)
<p>I am trying to get a TCP/IP client on my Android tablet to communicate with a TCP/IP server on my laptop. The tablet needs to use the local Wi-Fi.</p> <p><strong>The setup:</strong></p> <p>In Android Studio, on my PC, I have a simple TCP/IP server running on my PC.</p> <p>Code below:</p> <pre><code>package com.examp...
I am trying to get a TCP/IP client on my Android tablet to communicate with a TCP/IP server on my laptop. The tablet needs to use the local Wi-Fi. The setup: In Android Studio, on my PC, I have a simple TCP/IP server running on my PC. Code below: [CODE] In another Android Studio window, I have a simple TCP/IP client. C...
android|tcp|wifi
0
2022-05-25T03:10:26.233Z
2,022
5
3
2
257
1
1,593
59
3
3
true
false
false
false
false
false
zero
72,371,762
KivyMD MDFileManager file extension filtering does not work when android.api = 30
<p>I'm building an android application using python kivy framework and I use kivyMD MDFileManager to filter JSON files.</p> <pre><code>self.file_manager = MDFileManager(exit_manager=self.exit_manager,select_path=self.select_path) </code></pre> <p>I use the extension property to filter JSON files</p> <pre><code>ext = [&...
I'm building an android application using python kivy framework and I use kivyMD MDFileManager to filter JSON files. [CODE] I use the extension property to filter JSON files [CODE] I use the buildozer spec to build the android APK and the api version is 27 [CODE] My application is working perfectly fine and I needed to...
python-3.x|kivy|kivymd|buildozer|android-api-levels
0
2022-05-25T03:49:27.117Z
2,022
5
3
2
54
0
1,277
81
5
4
true
true
false
false
false
false
zero
72,371,834
replace assert with if statement in java android studio
<p>I've seen some Q&amp;As on stackoverflow that say assert gets removed from released version of apk and only works in debug versions. now I see that android studio has a suggestion that says <code>&quot;replace 'assert' with 'if' statement&quot;</code>.<br> I thought assert was something new to prevent/avoid null poi...
I've seen some Q&As on stackoverflow that say assert gets removed from released version of apk and only works in debug versions. now I see that android studio has a suggestion that says &quot;replace 'assert' with 'if' statement&quot; . I thought assert was something new to prevent/avoid null pointer exceptions. does a...
java|android|assert|assertion
0
2022-05-25T04:03:12.410Z
2,022
5
4
2
41
1
636
55
4
0
false
false
false
false
false
false
zero
72,371,930
I tried to get address from latitude and longitude through list<address> but got IndexOutOfBoundsException every time
<p>tried to get the address using latitude and longitude. Same code works on other devices though, address list returns null on some devices(physical) android version: 11.</p> <p>MainActivity.java</p> <pre><code>public void onLocationResult(@NonNull LocationResult locationResult) { s...
tried to get the address using latitude and longitude. Same code works on other devices though, address list returns null on some devices(physical) android version: 11. MainActivity.java [CODE] Error: [CODE]
android-studio
0
2022-05-25T04:22:19.980Z
2,022
5
4
2
32
1
207
117
1
2
true
false
false
false
false
false
zero
72,371,979
Flutter:Agora is not working in Android. How can I fix black screen issues in my android application of live stream using agora?
<p>When I run my app I found black screen after giving all permission. Please resolve my problem. Camera is not working properly the all screen became black only buttons is showing on the screen.</p> <pre><code>import 'package:flutter/material.dart'; import 'package:helo/app_id.dart'; void main() { runApp(const MyAp...
When I run my app I found black screen after giving all permission. Please resolve my problem. Camera is not working properly the all screen became black only buttons is showing on the screen. [CODE]
android|flutter|live-streaming|agora.io
0
2022-05-25T04:31:26.487Z
2,022
5
4
2
288
2
199
128
4
1
true
false
false
false
false
false
zero
72,371,993
Try to the File.listFiles() is returning null in android 11
<p>I was creating an application to test whether File.listFiles() method is working or not. To check this I made an application and I used it there but this returning null in place of an array. This is my full code please help and I have granted all permissions for android 11</p> <p>Manifest File</p> <pre><code>&lt;?xm...
I was creating an application to test whether File.listFiles() method is working or not. To check this I made an application and I used it there but this returning null in place of an array. This is my full code please help and I have granted all permissions for android 11 Manifest File [CODE] MainActivity.java [CODE]
java|android
0
2022-05-25T04:34:25.893Z
2,022
5
4
2
51
0
319
59
2
2
true
true
false
false
false
false
zero
72,372,028
Why the viewmodel class is not called when the second time its navigated to same fragment?
<p>I have a picker fragmet which is navigated from many other fragments. So the behaviour is to close the fragment and return the selected item to the parent fragment. So the code written to get this behaviour is the following. On Recyclerview Item click</p> <p>PickerFragment</p> <pre><code> onItemClick = { binding -&g...
I have a picker fragmet which is navigated from many other fragments. So the behaviour is to close the fragment and return the selected item to the parent fragment. So the code written to get this behaviour is the following. On Recyclerview Item click PickerFragment [CODE] Now I have to open the picker fragment when 'f...
android|kotlin|mvvm|android-jetpack-navigation
2
2022-05-25T04:41:22.447Z
2,022
5
4
2
40
0
1,120
90
4
3
true
true
false
false
false
false
low
72,372,057
How to unclear and uncancellable notification from notification bar
<p>I am trying to display notification when we enable button show notification button from my app and hide when i click on hide notification from my app , also if i will try to dismiss notification from notification section, notification should not dismiss notification should dismiss only when i click on stop notificat...
I am trying to display notification when we enable button show notification button from my app and hide when i click on hide notification from my app , also if i will try to dismiss notification from notification section, notification should not dismiss notification should dismiss only when i click on stop notification...
android
2
2022-05-25T04:45:55.077Z
2,022
5
4
2
35
0
937
67
1
3
true
true
false
false
false
false
low
72,372,103
Occasionally the result of querying certain Collection data in Firestore is 0
<p>I am operating a reading record app, and the book information registered by the user is loaded from the <code>BOOK</code> Collection at the start of the app.</p> <pre><code>db.collection(COLLECTION_BOOKS).whereEqualTo(FIELD_UID, uid).get().addOnCompleteListener { task -&gt; if(task.isSuccessful) { task.r...
I am operating a reading record app, and the book information registered by the user is loaded from the BOOK Collection at the start of the app. [CODE] The current problem is that we are receiving reports from a small number of users that the book data cannot be loaded through an unknown reproduce path. That is, if the...
android|firebase|google-cloud-firestore
0
2022-05-25T04:52:10.357Z
2,022
5
4
2
13
0
967
77
3
1
true
true
false
false
false
false
zero
72,372,111
How to change font family in Jetpack Compose programmatically?
<p>I'm building an Android app and I wanted to add an option in the settings for the user to choose either he wants to use The app custom font family or just use the dafault system font family and maybe also options for other fonts. Is there an option in compose to do this?</p>
I'm building an Android app and I wanted to add an option in the settings for the user to choose either he wants to use The app custom font family or just use the dafault system font family and maybe also options for other fonts. Is there an option in compose to do this?
android|kotlin|android-jetpack-compose|android-jetpack-compose-text
1
2022-05-25T04:53:01.630Z
2,022
5
4
2
554
1
271
62
4
0
false
false
false
false
false
false
low
72,372,133
Android Compose Textfield handle backspace(delete)
<p>Is in compose any way to handle delete(backspace) action in keyboard? I want to handle the delete action in keyboard</p>
Is in compose any way to handle delete(backspace) action in keyboard? I want to handle the delete action in keyboard
android|android-jetpack-compose
3
2022-05-25T04:58:01.760Z
2,022
5
4
2
304
1
116
50
2
0
false
false
false
false
false
false
low
72,372,195
Android, how to use phone's SQLite from C++?
<p>I've developed a <a href="https://github.com/ospfranco/react-native-quick-sqlite" rel="nofollow noreferrer">SQLite wrapper for React Native using C++</a>. The easiest way to get it working was to include the SQLite amalgamation in the sources. This however increases the bundle size significantly. So I want to give t...
I've developed a SQLite wrapper for React Native using C++ . The easiest way to get it working was to include the SQLite amalgamation in the sources. This however increases the bundle size significantly. So I want to give the users the option to use the phone's embedded SQLite version. The iOS version is working (I exc...
android|sqlite
0
2022-05-25T05:07:26.290Z
2,022
5
5
2
35
1
1,233
44
2
0
false
false
false
false
false
false
zero
72,372,199
RecyclerView delete the wrong position item
<p>I have a list of item in RecylerView, with have a delete button with delete the item from the list.<br /> When I click the delete button, the item at last got deleted not the item selected to be deleted.<br /> What's more, it creates a new item with old item's data instead of new data. The following below is the cod...
I have a list of item in RecylerView, with have a delete button with delete the item from the list. When I click the delete button, the item at last got deleted not the item selected to be deleted. What's more, it creates a new item with old item's data instead of new data. The following below is the code written in Ko...
android|kotlin|android-recyclerview
0
2022-05-25T05:07:59.513Z
2,022
5
5
2
59
0
402
43
3
1
true
true
false
false
false
false
zero
72,372,268
How to do such effect on text in Android
<p>Is it possible to do such text effect in Android Studio? Text over the bar, The width of the purple bar - from 0 to 100%, positioned below the text. I need to change the colors of the letters depending on the size of the bar. If it possible, then how to do it?</p> <p><a href="https://i.stack.imgur.com/U4bqV.png" rel...
Is it possible to do such text effect in Android Studio? Text over the bar, The width of the purple bar - from 0 to 100%, positioned below the text. I need to change the colors of the letters depending on the size of the bar. If it possible, then how to do it?
android|android-layout
0
2022-05-25T05:15:35.553Z
2,022
5
5
2
48
0
260
40
2
0
false
true
false
false
false
false
zero
72,372,405
Trying to load params through webViewClient but getting error from mnemonics not defined
<p>Here is my code and it's working in demo project but not in my project. I am trying to add these parameters through webView Client but it is showing from mnemonics not found.</p> <pre><code>fun sendTrx(c:Context, from_address: String, fromMnemonics: String, amount: String, toAddress: String) { mycontext=c va...
Here is my code and it's working in demo project but not in my project. I am trying to add these parameters through webView Client but it is showing from mnemonics not found. [CODE]
android
0
2022-05-25T05:33:13.007Z
2,022
5
5
2
24
1
181
88
1
1
true
false
false
false
false
false
zero
72,372,514
why we need Matrix for 2D transformations
<p>Can some one please explain me why we need matrix for image rotation, scaling etc. We can do all the basic function also without matrix like set the position, rotate an image all that so why we need matrix for that ? some reference will be very helpful thank you for advance.</p>
Can some one please explain me why we need matrix for image rotation, scaling etc. We can do all the basic function also without matrix like set the position, rotate an image all that so why we need matrix for that ? some reference will be very helpful thank you for advance.
android|kotlin|matrix|canvas|imageview
0
2022-05-25T05:48:44.770Z
2,022
5
5
2
29
0
275
41
5
0
false
true
false
false
false
false
zero
72,372,581
Android Google ML Kit translation returning incorrect translations
<p>I'm using the ML Kit translator currently with English to Polish. I know the docs say it should be used for casual words and translation, but its returning basic things like Monkey and Spark back as English words, does anyone know what could be happening?</p>
I'm using the ML Kit translator currently with English to Polish. I know the docs say it should be used for casual words and translation, but its returning basic things like Monkey and Spark back as English words, does anyone know what could be happening?
android|google-translate|google-mlkit
-1
2022-05-25T05:57:27.797Z
2,022
5
5
2
98
1
255
66
3
0
false
false
false
false
false
true
negative
72,372,663
Jetpack compose : LazyColumn scroll incorrectly until the content items are scrolled / seen at least once
<p>I am facing issue in jetpack compose LazyColumn scroll feature. I have 4 items in LazyColumn which are dynamically loaded from server and I do have a top bar which can be used to jump to those 4 sections straightaway.</p> <p><strong>Scenario 1 (jumping on indexes after app launch):</strong></p> <p>Now, on app launch...
I am facing issue in jetpack compose LazyColumn scroll feature. I have 4 items in LazyColumn which are dynamically loaded from server and I do have a top bar which can be used to jump to those 4 sections straightaway. Scenario 1 (jumping on indexes after app launch): Now, on app launch, I do see the first item in the l...
scroll|android-jetpack-compose|lazycolumn|scrolltoindex
0
2022-05-25T06:07:25.613Z
2,022
5
6
2
347
0
1,401
105
4
1
true
true
false
false
false
false
zero
72,372,710
How to test a method in another method with creating an object
<p>I want to test requestManager collaborator method:</p> <pre><code>override fun requestLogin(registerDto: RegisterDto) = flow { val userRegister = IG_RPC.User_Register(registerDto) var registerDtoObject: RegisterDto? = null requestManager.sendRequest( userRegister )?.takeWhile { it !is AbstractO...
I want to test requestManager collaborator method: [CODE] when I want to run the test, the userRegister object creates a new object and my test will fail. I mock userRegister, RequestManager and registerDto. can you help me to run the test with green line?
android|unit-testing|kotlin|mockito
0
2022-05-25T06:14:01.293Z
2,022
5
6
2
28
0
256
62
4
1
true
true
false
false
false
false
zero
72,372,736
How to use my datastore preference in fragment kotlin
<pre><code>private val Context.dataStore by preferencesDataStore(&quot;app_preferences&quot;) </code></pre> <p>I want to use the datastore above but the variable cannot be read or used in the fragment. like this picture <a href="https://i.stack.imgur.com/7Y3Cw.png" rel="nofollow noreferrer"><img src="https://i.stack.im...
[CODE] I want to use the datastore above but the variable cannot be read or used in the fragment. like this picture
android|kotlin|fragment|datastore|preference
0
2022-05-25T06:17:08.570Z
2,022
5
6
2
358
3
115
53
5
1
true
false
false
false
false
false
zero
72,372,780
Restart android app after SIGABRT / abort / Tgkill
<p>My main goal is to restart the app when it crashed. I have used the Thread.UncaughtExceptionHandler . But it isn't working with native crash like Tgkill. on <a href="https://testfairy.com/blog/ndk-crash-handling/" rel="nofollow noreferrer">https://testfairy.com/blog/ndk-crash-handling/</a> I have found some codes to...
My main goal is to restart the app when it crashed. I have used the Thread.UncaughtExceptionHandler . But it isn't working with native crash like Tgkill. on https://testfairy.com/blog/ndk-crash-handling/ I have found some codes to implement that handler inside a cpp file. Currently I'm getting the logs of the crash gen...
android|android-ndk
0
2022-05-25T06:22:11.433Z
2,022
5
6
2
58
0
500
50
2
0
false
true
false
false
false
false
zero
72,372,860
Variable doesn't update inside composable using jetpack compose
<p>I'm trying out jetpack compose and have a basic textfield composable that accepts a boolean variable for validation. However it doesn't update properly and only works at initialisation.</p> <pre><code>class RegistrationActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.on...
I'm trying out jetpack compose and have a basic textfield composable that accepts a boolean variable for validation. However it doesn't update properly and only works at initialisation. [CODE] composable: [CODE] I have a basic validation inside the composable which checks for string length which works, but when the log...
android|kotlin|android-jetpack-compose|android-jetpack-compose-text
0
2022-05-25T06:31:59.947Z
2,022
5
6
2
98
1
393
63
4
2
true
false
false
false
false
false
zero
72,372,939
image source failed to load from URL, any idea why it's happening?
<p>I'm using Google Books API to make it an application program using flutter on android studio, but the displayed image can't be loaded on the URL with the following description coming out;</p> <p>Running with unsound null safety For more information see <a href="https://dart.dev/null-safety/unsound-null-safety" rel="...
I'm using Google Books API to make it an application program using flutter on android studio, but the displayed image can't be loaded on the URL with the following description coming out; Running with unsound null safety For more information see https://dart.dev/null-safety/unsound-null-safety Debug service listening o...
android|flutter|api|android-studio|dart
0
2022-05-25T06:39:14.513Z
2,022
5
6
2
68
2
387
66
5
1
true
false
false
false
false
false
zero
72,372,953
Advice of Distribution Methods available for Google Play and an Android App
<p>We have an app in development and we have come across a distribution case that we're not 100% sure of the correct solution is to use.</p> <p>We understand that there are a number of solutions for the idea of bulk purchasing and distributing amongst and organisation. For example, educational purchase program, volume ...
We have an app in development and we have come across a distribution case that we're not 100% sure of the correct solution is to use. We understand that there are a number of solutions for the idea of bulk purchasing and distributing amongst and organisation. For example, educational purchase program, volume purchase p...
android|ios|subscription
0
2022-05-25T06:40:46.130Z
2,022
5
6
2
32
0
2,387
75
3
0
false
true
false
false
false
false
zero
72,372,956
Could not able get youtube URL in android webview while i navigate to another video. onPageStarted method is not called. Other urls called correctly
<p>onPageStarted method is called only While i load url firsttime.After that whenever i click a video,it is opening but onPageStarted method is not called. Other webpage urls are working correctly.</p> <p>I am getting url from onPageStarted callback and refresh functionality for user with swipeRefreshLayout. When pull ...
onPageStarted method is called only While i load url firsttime.After that whenever i click a video,it is opening but onPageStarted method is not called. Other webpage urls are working correctly. I am getting url from onPageStarted callback and refresh functionality for user with swipeRefreshLayout. When pull from top i...
android
0
2022-05-25T06:40:51.080Z
2,022
5
6
2
25
0
434
148
1
3
true
true
false
false
false
false
zero
72,372,975
Saving Logcat content to local storage but it suddenly stops
<p>I have implemented a solution</p> <pre><code>try { var process = Runtime.getRuntime().exec(&quot;logcat ${BuildConfig.APPLICATION_ID}:V brief output&quot;) process = Runtime.getRuntime().exec(&quot;logcat -f &quot; + &quot;/storage/emulated/0/&quot;+&quot;Logging.txt&quot;) } catch (e...
I have implemented a solution [CODE] This works for a few minutes and then stops on Android 10. Any idea what could be the reason that it stops writing log to the file?
android|logcat
0
2022-05-25T06:42:48.143Z
2,022
5
6
2
22
0
168
60
2
1
true
true
false
false
false
false
zero
72,372,993
button that creates several recyclerview list
<p>Currently developing a mobile app using java with android studio. (Beginner) I have 3 fragments (ToDo,Doing,Done) with on top a tablayout(ToDo,Ongoing,Finished) and a toolbar with an add button.</p> <p>The add button should create a recyclerview allowing the user to modify the content of each recyclerview</p> <p>How...
Currently developing a mobile app using java with android studio. (Beginner) I have 3 fragments (ToDo,Doing,Done) with on top a tablayout(ToDo,Ongoing,Finished) and a toolbar with an add button. The add button should create a recyclerview allowing the user to modify the content of each recyclerview How can I implement ...
java|android|xml|android-recyclerview
0
2022-05-25T06:44:08.217Z
2,022
5
6
2
32
0
362
45
4
1
true
true
false
false
false
false
zero
72,373,222
How to implement bufferTime equivalent in android?
<p>In Rxjs, there is one <a href="https://rxjs.dev/api/operators/bufferTime" rel="nofollow noreferrer">bufferTime</a> operator which will buffer the source observable for some time and then emit as array. Just wonder in android (kotlin) how can we implement similar?</p> <p>In the app, i'm using the Eclipse Paho MQTT C...
In Rxjs, there is one bufferTime operator which will buffer the source observable for some time and then emit as array. Just wonder in android (kotlin) how can we implement similar? In the app, i'm using the Eclipse Paho MQTT Client to subscribe the mqtt topics. And one of the topic, the notifications are sent quite fr...
android|kotlin|mqtt
0
2022-05-25T07:05:07.737Z
2,022
5
7
2
22
0
922
50
3
0
false
true
false
false
false
false
zero
72,373,316
Screen Recording App Security Exception: Media projections require a foreground service of type ServiceInfo.FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION
<p>I finished a course on <a href="https://developer.android.com/courses" rel="nofollow noreferrer">https://developer.android.com/courses</a> and I wanted to write a screen recording app.</p> <p>I haven't written much but so far when I launch the app, after I click &quot;START NOW&quot; to allow the app to start record...
I finished a course on https://developer.android.com/courses and I wanted to write a screen recording app. I haven't written much but so far when I launch the app, after I click &quot;START NOW&quot; to allow the app to start recording, the app crashes instantly. Below is the code I currently have. It is not completed ...
java|android
0
2022-05-25T07:13:24.207Z
2,022
5
7
2
44
0
907
148
2
2
true
true
false
false
false
false
zero
72,373,327
How to Mock and test ViewState with Callback Interface
<p>I have a ViewState class which accepts a callback interface as constructor parameter.</p> <pre><code>interface Callback { fun onEvent1() fun onEvent2(s1: String, s2: String?) } class ViewState(private val callback: Callback) { fun setState(state: State) = when (state) { is State1 -&gt; callback...
I have a ViewState class which accepts a callback interface as constructor parameter. [CODE] How can I test this? What I have so far is [CODE] How can I test the callback interface?
android|kotlin|mockito
0
2022-05-25T07:14:06.943Z
2,022
5
7
2
34
0
181
54
3
2
true
true
false
false
false
false
zero
72,373,348
Download Manager Couldn't Download Files
<p>I want to download a file using Download manager but It always show in my notification panel that Couldn't download items.</p> <blockquote> <p>The Link is work perfect I check it inside the web Browser as well</p> </blockquote> <pre><code> private void startDownlaod() { Log.d(&quot;Function called&quot;,&quot;...
I want to download a file using Download manager but It always show in my notification panel that Couldn't download items. The Link is work perfect I check it inside the web Browser as well [CODE]
java|android|url|download
0
2022-05-25T07:16:07.783Z
2,022
5
7
2
41
0
196
40
4
1
true
true
false
false
false
false
zero
72,373,404
flutter / Material3 / I don't know how to use the custom colors specified in the Material theme builder in the Flutter app
<p><a href="https://m3.material.io/styles/color/the-color-system/custom-colors" rel="nofollow noreferrer">https://m3.material.io/styles/color/the-color-system/custom-colors</a></p> <p>I was looking into how to use Material3 in Flutter and was looking through the above page, but I can't find a specific way to use the &q...
https://m3.material.io/styles/color/the-color-system/custom-colors I was looking into how to use Material3 in Flutter and was looking through the above page, but I can't find a specific way to use the &quot;custom colors&quot; described in the above page in Flutter. Is there an explanation somewhere? https://material-f...
android|flutter|dart|material-ui
0
2022-05-25T07:20:24.853Z
2,022
5
7
2
219
0
698
122
4
0
false
true
false
false
false
false
zero
72,373,422
How to apply Singleton to a class?
<p>In flutter, i am trying to make the below class a <code>Singleton</code>.</p> <pre><code>class ChatMessagesListView extends StatefulWidget { /// Creates a chat list widget ChatMessagesListView( {Key? key, this.isLastPage, required this.itemBuilder, required this.items, this.onEndRea...
In flutter, i am trying to make the below class a Singleton . [CODE] This is what I tried [CODE] However it is throwing me an error, The method '_' isn't defined for the type 'ChatMessagesListView'.Try correcting the name to the name of an existing method, or defining a method named . So basically, I can't execute the ...
android|ios|flutter|dart|singleton
1
2022-05-25T07:21:40.513Z
2,022
5
7
2
103
1
528
34
5
3
true
false
false
false
false
false
low
72,373,456
How to get additional parameter of app store link of application in android or ios? (React Native)
<p><strong>Apple Store</strong> <a href="https://apps.apple.com/sn/app/appname/id1234?additionalparameter=value" rel="nofollow noreferrer">https://apps.apple.com/sn/app/appname/id1234?additionalparameter=value</a></p> <p><strong>Google Play</strong> <a href="https://play.google.com/store/apps/details?id=com.appname&amp...
Apple Store https://apps.apple.com/sn/app/appname/id1234?additionalparameter=value Google Play https://play.google.com/store/apps/details?id=com.appname&hl=en_US&gl=US&additionalparameter=value Now, When some users installed the application through the above link, After successfully installing the application, How do I...
android|ios|react-native|android-studio
0
2022-05-25T07:25:35.570Z
2,022
5
7
2
36
0
417
98
4
0
false
true
false
false
false
false
zero