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,252,735
I want to make something like this for my android
<p>I want to make a temperature increasing and decreasing thing, with <strong>+</strong> and <strong>-</strong> buttons as shown in the image, but I am finding anything on the internet.</p> <img src="https://i.stack.imgur.com/2K9HF.jpg" width="350"/>
I want to make a temperature increasing and decreasing thing, with + and - buttons as shown in the image, but I am finding anything on the internet.
android|kotlin|android-layout
1
2022-05-15T22:56:41.120Z
2,022
5
22
6
40
1
148
49
3
0
false
false
false
false
false
false
low
72,252,839
How do I add a timer inside a firestore document?
<p>So I'm trying to create a post block feature for my android app where I want to post block users for x days, is there a way to add a countdown timer as a field inside the firestore document of each user?</p>
So I'm trying to create a post block feature for my android app where I want to post block users for x days, is there a way to add a countdown timer as a field inside the firestore document of each user?
java|android|firebase|google-cloud-firestore
0
2022-05-15T23:20:14.117Z
2,022
5
23
6
52
2
203
49
4
0
false
false
false
false
false
false
zero
72,252,890
Android Studio showing this error :Retrofit2 Android HTTP method annotation is required (e.g., @GET, @POST, etc.)
<p>It keeps showing me this error in Android Studio, I am using retrofit 2, trying to get data from Yelp API and it keeps showing me this msg</p> <p>java.lang.RuntimeException: Unable to start activity ComponentInfo{sf.alomari.yelp/sf.alomari.view.MainActivity}: java.lang.IllegalArgumentException: HTTP method annotatio...
It keeps showing me this error in Android Studio, I am using retrofit 2, trying to get data from Yelp API and it keeps showing me this msg java.lang.RuntimeException: Unable to start activity ComponentInfo{sf.alomari.yelp/sf.alomari.view.MainActivity}: java.lang.IllegalArgumentException: HTTP method annotation is requi...
java|android|api|kotlin|retrofit
0
2022-05-15T23:30:57.697Z
2,022
5
23
6
105
2
437
113
5
1
true
false
false
false
false
false
zero
72,252,916
Unsuccessful API Call
<p>I am fairly new at working with API calls in Android Studio and I'm having trouble with a block of code. It's a function that deletes a specific task item from a remote database.</p> <p>Here's my code.</p> <p>RepoInterface:</p> <pre><code> suspend fun deleteRemoteTask(token: String, id: Int, task: Task): Response...
I am fairly new at working with API calls in Android Studio and I'm having trouble with a block of code. It's a function that deletes a specific task item from a remote database. Here's my code. RepoInterface: [CODE] RepoImplementation: [CODE] Repository: [CODE] I'm confident that my interface and implementation are se...
api|android-studio|kotlin
0
2022-05-15T23:36:30.450Z
2,022
5
23
6
29
1
542
21
3
3
true
false
false
false
false
false
zero
72,252,980
Firebase Authenticated but not storing in real time database
<p>I have a login page which when registering a new user authenticates the data if it is validated and then is meant to store them. However, after the data is authenticated it doesn't add to the real time database.</p> <p>Register java code:</p> <pre><code> progressBar.setVisibility(View.VISIBLE); mAuth...
I have a login page which when registering a new user authenticates the data if it is validated and then is meant to store them. However, after the data is authenticated it doesn't add to the real time database. Register java code: [CODE] Dependencies: [CODE] I have set the rules of the database as below: [CODE] Finall...
java|android|firebase|firebase-realtime-database
0
2022-05-15T23:51:13.007Z
2,022
5
23
6
106
1
411
60
4
4
true
false
false
false
false
false
zero
72,252,982
LiveData object goes null when passing it to ViewModel
<p>I am making a project in Android studio where I get a List of objects from an API. Unfortunately, I have a problem with LiveData as it passess null from the repository to a ViewModel.</p> <p>In the repository class it calls the API, parses the response and sets the value of LiveData:</p> <pre><code> private final...
I am making a project in Android studio where I get a List of objects from an API. Unfortunately, I have a problem with LiveData as it passess null from the repository to a ViewModel. In the repository class it calls the API, parses the response and sets the value of LiveData: [CODE] And everything goes as planned unti...
java|android|android-livedata
1
2022-05-15T23:51:32.857Z
2,022
5
23
6
59
0
515
54
3
4
true
true
false
false
false
false
low
72,253,161
SharedViewModel's MutableLiveData Becomes Null In a Different Activity
<p>I am trying to share MutableLiveData between a fragment and an activity. However, even though the MutableLiveData is not null in the Fragment, it comes out as null in the Activity. Is there something wrong with my implementation?</p> <p><strong>SharedViewModel:</strong></p> <pre><code>class SharedViewModel : ViewMod...
I am trying to share MutableLiveData between a fragment and an activity. However, even though the MutableLiveData is not null in the Fragment, it comes out as null in the Activity. Is there something wrong with my implementation? SharedViewModel: [CODE] Fragment: [CODE] Activity: [CODE] Is there anything wrong with the...
android|kotlin
1
2022-05-16T00:41:01.033Z
2,022
5
0
0
101
0
445
70
2
3
true
true
false
false
false
false
low
72,253,354
Adding a huge amount of views
<p>I need to add a huge amount of buttons to the linear layout in a scroll box (around 1000). But it's taking a very long time so I want it to be in the background. I tried using Handler and AsyncTask, but the app freezes upon adding buttons. How can I put button adding task in the background, so I could interact with ...
I need to add a huge amount of buttons to the linear layout in a scroll box (around 1000). But it's taking a very long time so I want it to be in the background. I tried using Handler and AsyncTask, but the app freezes upon adding buttons. How can I put button adding task in the background, so I could interact with app...
android-studio
0
2022-05-16T01:24:15.020Z
2,022
5
1
0
14
0
347
29
1
0
false
true
false
false
false
false
zero
72,253,384
Is there a faster way to emulate tap in android using Python in PC?
<p>I tried:</p> <pre><code>from ppadb.client import Client adb = Client() device = adb.devices[0] device.shell('input tap x y') </code></pre> <p>but it just takes too long. Is there a faster alternative to it?</p>
I tried: [CODE] but it just takes too long. Is there a faster alternative to it?
python|android|adb
0
2022-05-16T01:31:28.023Z
2,022
5
1
0
255
2
80
67
3
1
true
false
false
false
false
false
zero
72,253,463
React-native custom font file naming
<p>Is it possible to name the custom font files such that Android will automatically find the right one based on the style provided?</p> <p>I am using custom font with styled components and this seems to work fine on iOS but not on Android:</p> <pre><code>font-family: 'myCustomFont'; font-weight: bold; </code></pre> <p...
Is it possible to name the custom font files such that Android will automatically find the right one based on the style provided? I am using custom font with styled components and this seems to work fine on iOS but not on Android: [CODE] This picks myCustomFont-Bold on iOS but for android it picks a default font since ...
android|react-native|fonts|styled-components
0
2022-05-16T01:48:37.020Z
2,022
5
1
0
355
1
510
36
4
2
true
false
false
false
false
false
zero
72,253,481
How to make a word Bold in a sentence in flutter Text Widget
<p>I have a paragraph to be displayed on a page, But in that sentence, some words need to be bold</p> <pre><code>final aboutSectionPieceOfContent = &quot;&quot;&quot; We are a &quot;Not for Profit&quot; trust venture building Wellness on wheels to address the serious problem of open defecation which is a major health r...
I have a paragraph to be displayed on a page, But in that sentence, some words need to be bold [CODE] This will be used as Text(aboutSectionPieceOfContent); But the problem is I want some words to be Bold for example in first para line 1, Not for Profit must be bold How do I get that Thanks for the help
android|flutter
0
2022-05-16T01:52:08.810Z
2,022
5
1
0
147
2
304
60
2
1
true
false
false
false
false
false
zero
72,253,521
Google Wallet API Codelabs example permission denied
<p>I'm investigating the feasibility of using Google Wallet to store barcodes (for electronic prescriptions, if that matters) via the web/jwt interface.</p> <p><a href="https://codelabs.developers.google.com/add-to-wallet-web#0" rel="nofollow noreferrer">https://codelabs.developers.google.com/add-to-wallet-web#0</a></p...
I'm investigating the feasibility of using Google Wallet to store barcodes (for electronic prescriptions, if that matters) via the web/jwt interface. https://codelabs.developers.google.com/add-to-wallet-web#0 After carefully following all instructions, including &quot;Create a temporary issuer account and a sample clas...
node.js|android-pay|google-codelab
2
2022-05-16T02:01:15.417Z
2,022
5
2
0
275
3
1,098
52
3
0
false
false
false
false
false
false
low
72,253,638
How to use Unity exported Android Project as an AAR
<p>I want to UnityLibrary in exported android project make a aar</p> <p>because i want import unityAAR at another android project.</p> <p>like this form : (unity aar) <a href="https://i.stack.imgur.com/aZptS.png" rel="nofollow noreferrer">https://i.stack.imgur.com/aZptS.png</a></p> <p>what is best way use to this aar f...
I want to UnityLibrary in exported android project make a aar because i want import unityAAR at another android project. like this form : (unity aar) https://i.stack.imgur.com/aZptS.png what is best way use to this aar file? thanks!
android|unity3d|3d
0
2022-05-16T02:26:57.187Z
2,022
5
2
0
35
0
232
51
3
0
false
true
false
false
false
false
zero
72,253,700
How do i write zod schema for a deeply nested object
<p>I have the following data:</p> <pre class="lang-json prettyprint-override"><code>{ &quot;2022-06-01&quot;: { &quot;09:00am&quot;: { &quot;time_table_id&quot;: 1, &quot;job_id&quot;: 4, &quot;start_working_time&quot;: &quot;09:00am&quot;, &quot;end_working_time&quot;: &quot;09:00pm&quot;...
I have the following data: [CODE] and this is my schema but it is giving me a zod error. [CODE]
android|typescript|react-native|api|zod
1
2022-05-16T02:40:34.497Z
2,022
5
2
0
1,187
1
95
52
5
2
true
false
false
false
false
false
low
72,253,921
how can i use pyinstaller to packing an apk which coding by pydroid 3
<p>I think i can use PyInstaller in Android just like use it in PC, but i run the following command:</p> <pre><code>pip install pyinstaller </code></pre> <p>in pydroid3, i got an error:</p> <blockquote> <p>Failed to build wheel for pyinstaller</p> </blockquote> <p>And then, i note pydroid teminal tell me current pip i...
I think i can use PyInstaller in Android just like use it in PC, but i run the following command: [CODE] in pydroid3, i got an error: Failed to build wheel for pyinstaller And then, i note pydroid teminal tell me current pip is too old, but i update the pip with teminal recommanded command, i got another error: pyinsta...
android|python-3.x|pydroid
0
2022-05-16T03:34:13.720Z
2,022
5
3
0
116
0
497
69
3
1
true
true
false
false
false
false
zero
72,253,930
How to solve error: class x Binding is public, should be declared in a file named x .java public final class x Binding implements ViewBinding {
<p>When i Try to build then this error will come. Actually i have integrated another app source code in my existing app source code. Error: class ActivitySigUupBinding is public, should be declared in a file named ActivitySignUpBinding.java public final class ActivitySigUupBinding implements ViewBinding</p> <p>Activity...
When i Try to build then this error will come. Actually i have integrated another app source code in my existing app source code. Error: class ActivitySigUupBinding is public, should be declared in a file named ActivitySignUpBinding.java public final class ActivitySigUupBinding implements ViewBinding ActivitySignUpBind...
java|android-databinding
1
2022-05-16T03:35:29.483Z
2,022
5
3
0
176
0
374
143
2
2
true
true
false
false
false
false
low
72,253,992
Unable to connect wahoo hr device using Polar BLE SDK
<p>I am facing an issue in Samsung Galaxy Tab A8, Android 11. Trying to connect Wahoo HR device using polar ble sdk. There is inconsistency in device connection. Sometimes it connect, sometimes it taking long time but not connecting.</p> <p>There is also a similar bug in official github repository issue: <a href="https...
I am facing an issue in Samsung Galaxy Tab A8, Android 11. Trying to connect Wahoo HR device using polar ble sdk. There is inconsistency in device connection. Sometimes it connect, sometimes it taking long time but not connecting. There is also a similar bug in official github repository issue: https://github.com/polar...
android
0
2022-05-16T03:51:30.970Z
2,022
5
3
0
42
1
393
53
1
0
false
false
false
false
false
false
zero
72,254,081
what to do if android studio showing Could not determine the dependencies of task ':app:processDebugResources'
<p>FAILURE: Build failed with an exception.</p> <ul> <li>What went wrong: Could not determine the dependencies of task ':app:processDebugResources'.</li> </ul> <blockquote> <p>Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. Could not resolve com.google.maps.android:android-maps-u...
FAILURE: Build failed with an exception. What went wrong: Could not determine the dependencies of task ':app:processDebugResources'. Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. Could not resolve com.google.maps.android:android-maps-utils:0.5+. Required by: project :app > Fail...
android
0
2022-05-16T04:12:08.767Z
2,022
5
4
0
54
0
1,787
110
1
1
true
true
false
false
false
false
zero
72,254,140
How to pass data from 3rd Activity to 1st activity
<p>There are 3 activities :</p> <ol> <li>Main Activity (Contains 3 fragments : a. Profile Fragment , b. Order Fragment, Item Fragment)</li> <li>Order Summary Activity</li> <li>Payment Screen</li> </ol> <p>I wanted to pass order id from payment screen to Main Activity(Order fragment).</p> <p>The flow : Main Activity(Pro...
There are 3 activities : Main Activity (Contains 3 fragments : a. Profile Fragment , b. Order Fragment, Item Fragment) Order Summary Activity Payment Screen I wanted to pass order id from payment screen to Main Activity(Order fragment). The flow : Main Activity(Profile Fragment) -> Main Activity(Item Fragment) -> Order...
android
0
2022-05-16T04:26:47.597Z
2,022
5
4
0
38
1
388
50
1
0
false
false
false
false
false
false
zero
72,254,153
Streaming byteArray video in Android
<p>How can I stream video from byteArray</p> <pre><code>fun streamVideoListener(frame: ByteArray){ // receiving H.264 frames every 100ms. } </code></pre> <p>I tried FFmpeg library. merged 100 frames and make few seconds video and add it to ExoPlayer playlist. but performance is not good at all. I also tried Nan...
How can I stream video from byteArray [CODE] I tried FFmpeg library. merged 100 frames and make few seconds video and add it to ExoPlayer playlist. but performance is not good at all. I also tried NanoHttpd library. I can send a simple .mp4 video file and play it with vlc or MxPlayer, but don't know how to stream a gro...
android|exoplayer|android-video-player|android-ffmpeg|nanohttpd
0
2022-05-16T04:28:13.040Z
2,022
5
4
0
113
1
361
36
5
1
true
false
false
false
false
false
zero
72,254,166
How to prevent Android resource file from been renamed
<p>When packaging android release apk, resource files are renamed to short name like &quot;zq.webp&quot; etc:</p> <p><a href="https://i.stack.imgur.com/YQ1vJ.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/YQ1vJ.png" alt="enter image description here" /></a></p> <p>How to prevent this renaming and re...
When packaging android release apk, resource files are renamed to short name like &quot;zq.webp&quot; etc: How to prevent this renaming and remain old style like &quot;res/drawable/ic_launcher.webp&quot;
android|aapt2
2
2022-05-16T04:30:54.917Z
2,022
5
4
0
23
0
203
54
2
0
false
true
false
false
false
false
low
72,254,238
Error in Kivy App for android: ModuleNotFoundError: No module named 'httpcore'
<p>I ran logcat and got the above error. I can't seem to find documentation or make sense of it. My theory is that there has to be some kind of setup inside my python code that isn't applicable to the .spec file.</p> <p>I was looking on githube and found this setup:</p> <p>'''</p> <pre><code>import asyncio from aiohttp...
I ran logcat and got the above error. I can't seem to find documentation or make sense of it. My theory is that there has to be some kind of setup inside my python code that isn't applicable to the .spec file. I was looking on githube and found this setup: ''' [CODE] ''' Anyone know what's going on? Do I need to import...
python|android|kivy
1
2022-05-16T04:45:13.967Z
2,022
5
4
0
118
0
374
78
3
1
true
true
false
false
false
false
low
72,254,271
How to make a edit text which has a limit of char and ignores all the chars of a url
<p>How can we make a custom edit text that will have a limit, for example, 300 chars? But, if the users enter a very long link like 200 chars, how can I reduce the chars for the link? For example:</p> <pre><code>User entered: Hello, world. Length: 13 User entered: Hello https://stackoverflow.com Length: 7 // adding on...
How can we make a custom edit text that will have a limit, for example, 300 chars? But, if the users enter a very long link like 200 chars, how can I reduce the chars for the link? For example: [CODE] This is a self-answer-based question as I felt this is a common need for people. I have added the code in both java and...
java|android|kotlin
0
2022-05-16T04:50:59.070Z
2,022
5
4
0
66
1
327
84
3
1
true
false
false
false
false
false
zero
72,254,318
During drag/reorder, use itemTouchhelper to shrink or resize all items in the Recyclerview (Vertical)
<p>I have a vertical recyclerview that uses the ItemTouchHelper callback to allow dragging and reordering of items. When an item is moved, I want to shrink all of the items' widths and heights so they all appear smaller on screen, making it easier to reorder the items.</p> <p>So, instead of just the current item, I'd l...
I have a vertical recyclerview that uses the ItemTouchHelper callback to allow dragging and reordering of items. When an item is moved, I want to shrink all of the items' widths and heights so they all appear smaller on screen, making it easier to reorder the items. So, instead of just the current item, I'd like to res...
android|android-recyclerview|drag-and-drop|itemtouchhelper
2
2022-05-16T04:59:10.273Z
2,022
5
4
0
44
0
393
101
4
0
false
true
false
false
false
false
low
72,254,347
How I will get line in string array that start with # tag and will show as a heading. Using Xamarin C#
<p>I update my question.</p> <p>How I will get line that start with # tag and will show as a heading. Before next # tag all data will be show as content of the heading.</p> <p>Now I have getting file data in label. How I will do work with this. Using Xamarin C#.</p> <p>Thank you!</p>
I update my question. How I will get line that start with # tag and will show as a heading. Before next # tag all data will be show as content of the heading. Now I have getting file data in label. How I will do work with this. Using Xamarin C#. Thank you!
c#|xamarin|xamarin.forms|xamarin.android
0
2022-05-16T05:03:34.450Z
2,022
5
5
0
253
1
256
102
4
0
false
false
false
false
false
false
zero
72,254,359
Google oAuth 2.0 with Xamarin.Android
<p>I spent days trying to figure out how to have my app Authenticate against Ggoogle, using Xamarin.Android App.</p> <p>I Tried OAuth2Authenticator (From Xamarin.Auth). I get Error's such as &quot;Disallowed Url&quot;</p> <pre><code> var auth = new OAuth2Authenticator(clientId: &quot;aaaa-aaaaa.apps.googleuserco...
I spent days trying to figure out how to have my app Authenticate against Ggoogle, using Xamarin.Android App. I Tried OAuth2Authenticator (From Xamarin.Auth). I get Error's such as &quot;Disallowed Url&quot; [CODE] Then i also tried Google's oAuth Library [CODE] it Simple fails on GoogleWebAuthorizationBroker.Authorize...
xamarin|xamarin.android|google-oauth
0
2022-05-16T05:05:13.173Z
2,022
5
5
0
368
1
478
37
3
2
true
false
false
false
false
false
zero
72,254,411
How to go back to a previous Activity in activity stack which contains fragments
<p>There are 3 activities :</p> <p>Main Activity (Contains 3 fragments : a. Profile Fragment , b. Order Fragment, Item Fragment) Order Summary Activity Payment Screen</p> <p>The flow : Main Activity(Profile Fragment) -&gt; Main Activity(Item Fragment) -&gt; Order Summary Activity -&gt; Payment Screen -&gt; Main Activit...
There are 3 activities : Main Activity (Contains 3 fragments : a. Profile Fragment , b. Order Fragment, Item Fragment) Order Summary Activity Payment Screen The flow : Main Activity(Profile Fragment) -> Main Activity(Item Fragment) -> Order Summary Activity -> Payment Screen -> Main Activity(Order Fragment) So basicall...
android|android-fragments
1
2022-05-16T05:14:04.080Z
2,022
5
5
0
35
1
404
80
2
0
false
false
false
false
false
false
low
72,254,659
Can we create a DecorView in Android?
<p>I am developing custom keyboard. I am placing the custom keyboard in DecorView. Here I am facing on issue. If any popup showing then my keyboard is placed behind the popup. I noticed in layout manager that there are two decorview is created. my keyboard is placed in behind decorview. I tried <code>myView.bringToFron...
I am developing custom keyboard. I am placing the custom keyboard in DecorView. Here I am facing on issue. If any popup showing then my keyboard is placed behind the popup. I noticed in layout manager that there are two decorview is created. my keyboard is placed in behind decorview. I tried myView.bringToFront(); But ...
android
1
2022-05-16T05:54:32.407Z
2,022
5
5
0
47
0
459
37
1
0
false
true
false
false
false
false
low
72,254,762
Message not added to store after SmsManager SendTextMessage
<p>G'day,</p> <p>My question is fairly straight forward:</p> <p>Should I expect <code>SMSManager.Default.SendTextMessage()</code> to automatically add the sent message to the message store, or do I need to add it myself? If I need to add it myself, should I do that in the <code>BroadcastReceiver</code> or in the depend...
G'day, My question is fairly straight forward: Should I expect SMSManager.Default.SendTextMessage() to automatically add the sent message to the message store, or do I need to add it myself? If I need to add it myself, should I do that in the BroadcastReceiver or in the dependency service after sending? For context: I'...
android|xamarin|smsmanager|maui
0
2022-05-16T06:09:28.513Z
2,022
5
6
0
29
1
999
59
4
3
true
false
false
false
false
false
zero
72,254,828
Rx java response change?
<p>I am new to rxjava this is what the api call function</p> <pre><code> Observable&lt;JsonElement&gt; call = mWebAPI.getClicktoCall(user_id,Record_id_separated2); Disposable callProject = call.subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(res...
I am new to rxjava this is what the api call function [CODE] this is the response [CODE] the status code also 200 the function should go to Click_to_CallResponse(res) but it goes to Click_to_CallErrors(tr)
java|android|rx-java|native|rxjs-observables
0
2022-05-16T06:17:59.357Z
2,022
5
6
0
25
0
205
24
5
2
true
true
false
false
false
false
zero
72,254,836
No internet connection - Android Firebase Flutter RTD
<p>When building an .apk of my flutter app and installing on my android device the data created is only locally saved not saved online. When using in the android emulator it works perfectly with no errors, even when switching the signing configs to use debug.</p> <p>There are no firebase rules set, everyone can read an...
When building an .apk of my flutter app and installing on my android device the data created is only locally saved not saved online. When using in the android emulator it works perfectly with no errors, even when switching the signing configs to use debug. There are no firebase rules set, everyone can read and write. T...
android|firebase|flutter|firebase-realtime-database
0
2022-05-16T06:19:03.713Z
2,022
5
6
0
131
1
591
53
4
0
false
false
false
false
false
false
zero
72,254,896
Android recommended and reliable API for periodic background work?
<p>I've been using WorkManager to create notifications for my app. For my purposes I figured PeriodicWorkRequest is the most fitting, but after a bit of testing and reading online it's seems extremely unreliable. Using the minimal interval (15 minutes), and the app being closed, the worker woke up 5-6 times and then se...
I've been using WorkManager to create notifications for my app. For my purposes I figured PeriodicWorkRequest is the most fitting, but after a bit of testing and reading online it's seems extremely unreliable. Using the minimal interval (15 minutes), and the app being closed, the worker woke up 5-6 times and then seems...
android|android-notifications|android-workmanager|android-background
0
2022-05-16T06:25:05.910Z
2,022
5
6
0
141
1
808
66
4
0
false
false
false
false
false
false
zero
72,254,907
Flutter - compile android dependency from local instead of remote repository
<p>I'm creating a flutter ebook reader app using a package named epub_viewer that uses Folioreader for reading ebooks. but I need to make some customizations in the main library Folioreader for my project so I've tried to add Folioreader as a library for making my customizations and testing the package.</p> <p>this is ...
I'm creating a flutter ebook reader app using a package named epub_viewer that uses Folioreader for reading ebooks. but I need to make some customizations in the main library Folioreader for my project so I've tried to add Folioreader as a library for making my customizations and testing the package. this is the origin...
android|flutter|package
0
2022-05-16T06:26:17.770Z
2,022
5
6
0
30
0
680
76
3
3
true
true
false
false
false
false
zero
72,254,928
Can I use Netflix like payment method in my Google playstore app to bypass google in app payments?
<p>I want to <strong>bypass google in app payment method</strong> as I have to create subscriptions that crossed max limits google play allows i.e; <strong>400 USD</strong>. The approach I am using is to register user on my web portal and subscribed them on web instead of app, Does google allows it?</p>
I want to bypass google in app payment method as I have to create subscriptions that crossed max limits google play allows i.e; 400 USD . The approach I am using is to register user on my web portal and subscribed them on web instead of app, Does google allows it?
android|google-play|stripe-payments|subscription|in-app-subscription
1
2022-05-16T06:29:41.553Z
2,022
5
6
0
67
0
264
98
5
0
false
true
false
false
false
false
low
72,254,963
After updating latest version of IDE of Flutter android studio, code errors are not showing on floating highlights and on dart files
<p>I have just updated my latest version of IDE of a flutter on android studio. After updating, I have noted that coding errors are not showing on floating highlights and on dart files. I have added some errors and tested but no errors showing. When I run the code, errors are displayed on the run tab at the bottom. I h...
I have just updated my latest version of IDE of a flutter on android studio. After updating, I have noted that coding errors are not showing on floating highlights and on dart files. I have added some errors and tested but no errors showing. When I run the code, errors are displayed on the run tab at the bottom. I have...
flutter|android-studio|dart|ide
0
2022-05-16T06:35:09.787Z
2,022
5
6
0
55
0
489
132
4
0
false
true
false
false
false
false
zero
72,254,971
How to fix Failed to invoke private with no args
<p>I can not understand why this error appeared and how to fix it. help me please</p> <blockquote> <p>Failed to invoke private ru.osport.osportnfc.model.api.PrintCmd() with no args</p> </blockquote> <p>I looked at the structure of the transmitted data in retrofit2 but did not see any errors</p> <pre><code>@Keep interfa...
I can not understand why this error appeared and how to fix it. help me please Failed to invoke private ru.osport.osportnfc.model.api.PrintCmd() with no args I looked at the structure of the transmitted data in retrofit2 but did not see any errors [CODE] then the call itself [CODE] I tried to change the PrtintCmd struc...
android|kotlin|retrofit2|coroutine
1
2022-05-16T06:35:46.743Z
2,022
5
6
0
244
1
2,903
48
4
4
true
false
false
false
false
false
low
72,255,008
Bing Maps - NonExistentClass it ->
<p>Still having issues working with Bing Maps. I have followed the implementation instructions ( see previous questions ) but still getting same error msg. This being that the java file the line &quot;mMapView.setCredentialsKey(BuildConfig.CREDENTIALS_KEY);&quot; shows the CREDENTIALS_KEY as redand error msg &quot;cann...
Still having issues working with Bing Maps. I have followed the implementation instructions ( see previous questions ) but still getting same error msg. This being that the java file the line &quot;mMapView.setCredentialsKey(BuildConfig.CREDENTIALS_KEY);&quot; shows the CREDENTIALS_KEY as redand error msg &quot;cannot ...
java|android|android-studio|class
0
2022-05-16T06:39:11.540Z
2,022
5
6
0
26
0
592
34
4
1
true
true
false
false
false
false
zero
72,255,019
How to get filepath for Documents from Uri in android 10 and android 11
<p>I am creating an app where users will upload pdf or doc files.</p> <p>I have used default file chooser which returns Uri , now i need to upload those selected files to server</p> <p>Its working fine upto android 9 ,i am facing issues in android 10 and 11 (i have used android:requestLegacyExternalStorage=&quot;true&q...
I am creating an app where users will upload pdf or doc files. I have used default file chooser which returns Uri , now i need to upload those selected files to server Its working fine upto android 9 ,i am facing issues in android 10 and 11 (i have used android:requestLegacyExternalStorage=&quot;true&quot; for android ...
file-upload|android-11
0
2022-05-16T06:40:16.450Z
2,022
5
6
0
134
0
515
71
2
4
true
true
false
false
false
false
zero
72,255,041
App is too slow when data passing through tcp socket from multiple devices
<p>I'm developing an App which is for the statistics of medical equipment's used in hospital (example : uromon). The data from equipment is transferred through socket for every milliseconds. The app is running properly if the connected device is up to 5. if i connect more than that then the app is not responding. I ne...
I'm developing an App which is for the statistics of medical equipment's used in hospital (example : uromon). The data from equipment is transferred through socket for every milliseconds. The app is running properly if the connected device is up to 5. if i connect more than that then the app is not responding. I need s...
android|android-studio|sockets
0
2022-05-16T06:42:32.213Z
2,022
5
6
0
23
0
381
74
3
0
false
true
false
false
false
false
zero
72,255,108
How to check used language percentage in Android Studio project
<p>When we upload a project on GitHub it tells us the percentage of language used in that project. Is there any other option to check that?</p>
When we upload a project on GitHub it tells us the percentage of language used in that project. Is there any other option to check that?
android|android-studio|apk
0
2022-05-16T06:49:26.353Z
2,022
5
6
0
46
1
136
63
3
0
false
false
false
false
false
false
zero
72,255,131
React native array of string to align in horizontal (Please see the below image)
<p>I want to create something like this </p> <p><img src="https://i.stack.imgur.com/7VhCE.png" alt="Image" /></p> <p>The data I am getting from backend is like this </p> <pre><code>[ &quot;C&quot;, &quot;C++&quot;, //So on ] </code></pre>
I want to create something like this The data I am getting from backend is like this [CODE]
android|ios|react-native|android-layout|styles
0
2022-05-16T06:51:44.063Z
2,022
5
6
0
52
1
91
80
5
1
true
false
false
false
false
false
zero
72,255,155
pressing back button make fragment does not work nav component
<p>I am using nav component, just Activity Frag1,Frag2 , however moving from Frag1 to Frag2 is working, but When phone back button is pressed, Frag1 is appearing But nothing works, Clicklistner is nothing, init code does working</p> <pre><code> class CarActivity : AppCompatActivity() { fun getLayoutId(): Int = R...
I am using nav component, just Activity Frag1,Frag2 , however moving from Frag1 to Frag2 is working, but When phone back button is pressed, Frag1 is appearing But nothing works, Clicklistner is nothing, init code does working [CODE] Activity [CODE] nav_graph.xml [CODE] in activity [CODE] is seems like a new view is cre...
android
0
2022-05-16T06:54:29.477Z
2,022
5
6
0
17
0
406
62
1
4
true
true
false
false
false
false
zero
72,255,377
Prevent okhttp3 using http2 with Frida
<p>I debug an Android application with Frida that using okhttp3 library.</p> <p>How can I prevent that library using HTTP2 and using only HTTP1.1?</p> <p>When I run <a href="https://codeshare.frida.re/@BenGardiner/android-list-loaded-classes/" rel="nofollow noreferrer">https://codeshare.frida.re/@BenGardiner/android-li...
I debug an Android application with Frida that using okhttp3 library. How can I prevent that library using HTTP2 and using only HTTP1.1? When I run https://codeshare.frida.re/@BenGardiner/android-list-loaded-classes/ I got lot of classes for example : [CODE]
android|okhttp|http2|frida|http-1.1
1
2022-05-16T07:13:22.623Z
2,022
5
7
0
141
0
258
38
5
1
true
true
false
false
false
false
low
72,255,387
Android MultiLine EditText How to wrap normal
<p>first I need editTextView MultiLine and wrap,but when my input include some like &quot;-&quot;,it wrap too Early,I just need it to show up full before the line break. <a href="https://i.stack.imgur.com/Evf24.png" rel="nofollow noreferrer">bad wrap img</a></p> <p>my xml code:</p> <pre><code>&lt;EditText andro...
first I need editTextView MultiLine and wrap,but when my input include some like &quot;-&quot;,it wrap too Early,I just need it to show up full before the line break. bad wrap img my xml code: [CODE] I want to it like to i want to wrap img What should I do?
android
0
2022-05-16T07:13:59.667Z
2,022
5
7
0
30
1
257
45
1
1
true
false
false
false
false
false
zero
72,255,398
When I update version in play console it shows me this "You need to publish the artifact to any track before sharing it." instead of link
<p>I already published app for testing in Internal Testing Section (Version 1) but when I upload another Version it is showing me this line and not showing link of the app anywhere . That's why I am unable to test another version of app . I am pasting the screenshot for better understanding. Thank you <a href="https://...
I already published app for testing in Internal Testing Section (Version 1) but when I upload another Version it is showing me this line and not showing link of the app anywhere . That's why I am unable to test another version of app . I am pasting the screenshot for better understanding. Thank you Link of the screensh...
android|google-play-console|artifact|google-play-internal-testing
0
2022-05-16T07:15:47.133Z
2,022
5
7
0
73
1
322
137
4
0
false
false
false
false
false
false
zero
72,255,445
Multiple cards inside a list widget in flutter
<p>I am a beginner in Flutter and i am creating an demo application but in that application I want to add another card in the list widget(code is mentioned below) but somehow it shows an error.</p> <pre><code>import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class Intro extends Stateful...
I am a beginner in Flutter and i am creating an demo application but in that application I want to add another card in the list widget(code is mentioned below) but somehow it shows an error. [CODE] Also , I tried by creating a loop of widget still it shows an error in Widget build(BuildContext context)! So show me a wa...
android|flutter|listview|widget|android-cardview
0
2022-05-16T07:19:47.470Z
2,022
5
7
0
441
1
352
46
5
1
true
false
false
false
false
false
zero
72,255,457
How to add a FloatingActionButton programatically
<p>I'm trying to add a <code>FloatingActionButton</code> to my Android App whick has a WebView as the app content, but I can't figure out how.</p> <p>Where and how should I go about it?</p> <p>Thank you all in advance.</p> <pre><code>public class MainActivity extends AppCompatActivity { private AppBarConfiguration...
I'm trying to add a FloatingActionButton to my Android App whick has a WebView as the app content, but I can't figure out how. Where and how should I go about it? Thank you all in advance. [CODE]
java|android|webview|floating-action-button
0
2022-05-16T07:20:38.643Z
2,022
5
7
0
29
1
195
49
4
1
true
false
false
false
false
false
zero
72,255,465
Include a file in an Android application
<p>I used android studio to create a java app. In the project, I created the &quot;assets&quot; folder, and inside I put the json file that I will need to get the credentials for GmailAPI.</p> <p><a href="https://i.stack.imgur.com/G2ck9.jpg" rel="nofollow noreferrer">AssetFolder</a></p> <p>I wish I could access the jso...
I used android studio to create a java app. In the project, I created the &quot;assets&quot; folder, and inside I put the json file that I will need to get the credentials for GmailAPI. AssetFolder I wish I could access the json file. I have already tried in many ways but every time it tells me that the file is missing...
json|android-studio|gmail-api|credentials
0
2022-05-16T07:21:44.493Z
2,022
5
7
0
105
1
441
40
4
2
true
false
false
false
false
false
zero
72,255,600
How to show all items of list in recyclerview?
<p>I have an adapter that is showing limited Items on Fragment.</p> <pre><code> @Override public int getItemCount() { int limit = 7; return Math.min(latestProductModelList.size(),limit); } </code></pre> <p>and I want to show all the items of list in recyclerview when I click on <code>ViewAll</code> button using...
I have an adapter that is showing limited Items on Fragment. [CODE] and I want to show all the items of list in recyclerview when I click on ViewAll button using the same adapter on another acitivity. this is my adapter. ` [CODE] ` How to achieve this? Or is there another way to achieve this? kindly help me.
android|android-recyclerview
1
2022-05-16T07:33:20.213Z
2,022
5
7
0
83
1
309
46
2
2
true
false
false
false
false
false
low
72,255,612
Upon upgrading Android Studio, a particular project of mines cant seem to run. I get an error saying this The project is not a graddle based project
<p>Additionally, In the event log, I also get errors which say &quot;could not read ok from ADB server&quot;, &quot;failed to start daemon&quot;, &quot;error cant connect to daemon&quot;,&quot;C:\Users\pilla\AppData\Local\Android\Sdk\platform-tools\adb.exe start-server' failed -- run manually if necessary&quot;.</p> <p...
Additionally, In the event log, I also get errors which say &quot;could not read ok from ADB server&quot;, &quot;failed to start daemon&quot;, &quot;error cant connect to daemon&quot;,&quot;C:\Users\pilla\AppData\Local\Android\Sdk\platform-tools\adb.exe start-server' failed -- run manually if necessary&quot;. The proje...
flutter|android-studio|flutter-dependencies
0
2022-05-16T07:34:39.867Z
2,022
5
7
0
26
0
654
148
3
0
false
true
false
false
false
false
zero
72,255,618
Display a collection of drawables Android Studio
<p>I have the task to make a Tic-tac-toe app and follow a list of instructions. The requirement is to have two buttons (Play and about) and when the Play button is tapped, the game to appear in the same activity. I've went so far as to display the buttons, the behavior of the About button, and the game, but I can't fig...
I have the task to make a Tic-tac-toe app and follow a list of instructions. The requirement is to have two buttons (Play and about) and when the Play button is tapped, the game to appear in the same activity. I've went so far as to display the buttons, the behavior of the About button, and the game, but I can't figure...
android-studio|drawable
0
2022-05-16T07:35:25.760Z
2,022
5
7
0
15
0
775
48
2
0
false
true
false
false
false
false
zero
72,255,675
How to prevent saving empty data in SQLite database
<p>I dont want to save empty data in my Note App. I have tried Everything but when I leave Edittexts empty it still saves data into my data base. what should I do?</p> <p>this is my insertNote method</p> <pre><code>public boolean insertNote(Note note){ SQLiteDatabase db = this.getWritableDatabase(); C...
I dont want to save empty data in my Note App. I have tried Everything but when I leave Edittexts empty it still saves data into my data base. what should I do? this is my insertNote method [CODE] and this is the method that saves my notes in my AddNoteActivity [CODE] i have also tried this but this is but this doesn't...
java|android|database|sqlite|android-studio
0
2022-05-16T07:40:27.170Z
2,022
5
7
0
65
2
362
51
5
3
true
false
false
false
false
false
zero
72,255,703
Flutter submodule in Android project - packages not resolved
<p>I am trying to add a Flutter module to my Android project. For that, I follow the <a href="https://docs.flutter.dev/development/add-to-app/android/project-setup" rel="nofollow noreferrer">relevant flutter docs</a>, and everything seemingly works fine.</p> <p>However, when I run a Gradle sync after following all the ...
I am trying to add a Flutter module to my Android project. For that, I follow the relevant flutter docs , and everything seemingly works fine. However, when I run a Gradle sync after following all the steps in above link, the sync returns the following warnings [CODE] It seems it cannot find some needed packages in any...
android|flutter|maven|gradle|flutter-module
0
2022-05-16T07:43:28.367Z
2,022
5
7
0
88
1
498
60
5
2
true
false
false
false
false
false
zero
72,255,780
ACTION_OPEN_DOCUMENT_TREE Delphi
<p>Calling ACTION_OPEN_DOCUMENT_TREE (system picker any external directory) from Delphi 10.4 targeting Android29+ projects causes apps to restart, instead of giving permanent access to folder.</p> <p><a href="https://developer.android.com/training/data-storage/shared/documents-files#grant-access-directory" rel="nofollo...
Calling ACTION_OPEN_DOCUMENT_TREE (system picker any external directory) from Delphi 10.4 targeting Android29+ projects causes apps to restart, instead of giving permanent access to folder. Android developer training > Grant access to a directory's contents Did anyone gain access to the files in a directory by ACTION_O...
android|delphi|storage-access-framework|storage-access-api
0
2022-05-16T07:50:31.880Z
2,022
5
7
0
89
0
345
32
4
1
true
true
false
false
false
false
zero
72,255,868
Why doesn't Retrofit get a faster response after the first request?
<p>I am doing some research on Retrofit and AsyncTask. I write a simple code that use AsyncTask + HttpUrlConnection to send a <code>GET</code> reuest to <a href="https://jsonplaceholder.typicode.com/posts" rel="nofollow noreferrer">jsonplaceholder</a> to retrive some json sample. And the respond time look something li...
I am doing some research on Retrofit and AsyncTask. I write a simple code that use AsyncTask + HttpUrlConnection to send a GET reuest to jsonplaceholder to retrive some json sample. And the respond time look something like below: First response time: 697 Second response time: 176 Third response time: 175 We can see tha...
android|postman|retrofit|retrofit2|httpurlconnection
0
2022-05-16T07:57:59.993Z
2,022
5
7
0
158
0
819
67
5
0
false
true
false
false
false
false
zero
72,255,909
android ANR file not showing thread/stack info
<p>I met an anr using my application. When I dump the anr file from /data/anr directory, the content is like below:</p> <p><a href="https://i.stack.imgur.com/TaszU.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/TaszU.jpg" alt="enter image description here" /></a></p> <p>It is really confusing why th...
I met an anr using my application. When I dump the anr file from /data/anr directory, the content is like below: It is really confusing why this happens. How can I investigate it?
android|android-anr-dialog
0
2022-05-16T08:02:24.267Z
2,022
5
8
0
19
0
179
46
2
0
false
true
false
false
false
false
zero
72,255,928
Enabling OMX support in GStreamer for Android
<p>I'm currently trying to hook onto an HW H.264 decoder on Oculus Quest 2 (Adreno 650).</p> <p>The platform supports just one HW decoder <code>OMX.qcom.video.decoder.avc</code></p> <p>The video decoding pipeline is created using GStreamer and currently looking like this: <code>rtspsrc location=rtsp://192.168.1.239:855...
I'm currently trying to hook onto an HW H.264 decoder on Oculus Quest 2 (Adreno 650). The platform supports just one HW decoder OMX.qcom.video.decoder.avc The video decoding pipeline is created using GStreamer and currently looking like this: rtspsrc location=rtsp://192.168.1.239:8554/left ! application/x-rtp,encoding-...
android|gstreamer|encoder-decoder|oculusquest
0
2022-05-16T08:03:52.343Z
2,022
5
8
0
70
0
906
45
4
0
false
true
false
false
false
false
zero
72,255,987
The screen that layout validation and show system ui is different
<p>I made a screen at the Android studio. When I ran it, I couldn't understand that these three screens were different. What should I make the screen according to?</p> <p><a href="https://i.stack.imgur.com/pjuqh.png" rel="nofollow noreferrer">enter image description here</a></p> <p>this is show System Ui version</p> <p...
I made a screen at the Android studio. When I ran it, I couldn't understand that these three screens were different. What should I make the screen according to? enter image description here this is show System Ui version enter image description here this is Layout Validation version enter image description here this is...
android|user-interface|nox
0
2022-05-16T08:08:35.840Z
2,022
5
8
0
32
2
332
65
3
0
false
false
false
false
false
false
zero
72,256,039
Here SDK Flutter 3.0
<p>Im Using Here SDK for Flutter. Now with the Flutter 3.0 update it broke.</p> <p>I tried to change the null aware operators inside that package and the</p> <blockquote> <p>plugins/here_sdk/lib/src/sdk/mapview/here_map.dart</p> </blockquote> <p>---&gt; No more errors.</p> <p>inside</p> <blockquote> <p>plugins/here_sdk...
Im Using Here SDK for Flutter. Now with the Flutter 3.0 update it broke. I tried to change the null aware operators inside that package and the plugins/here_sdk/lib/src/sdk/mapview/here_map.dart ---> No more errors. inside plugins/here_sdk/android/src/main/kotlin/com/here/mapview/MapController.kt line 52 [CODE] changed...
android|flutter|here-api|heremaps
0
2022-05-16T08:12:24.047Z
2,022
5
8
0
273
0
578
20
4
4
true
true
false
false
false
false
zero
72,256,070
Android Classic Bluetooth make UUID public
<p>Seems like when made discoverable, an android device (A) doesn't show it's UUIDS, unless the device trying to get it's UUIDS (B) is paired with it.</p> <p>Any body know how to make it's UUIDS public to any device ? By the way I'm not working with BLE, only Classic Bluetooth</p>
Seems like when made discoverable, an android device (A) doesn't show it's UUIDS, unless the device trying to get it's UUIDS (B) is paired with it. Any body know how to make it's UUIDS public to any device ? By the way I'm not working with BLE, only Classic Bluetooth
java|android|bluetooth|uuid
0
2022-05-16T08:15:15.323Z
2,022
5
8
0
18
0
267
42
4
0
false
true
false
false
false
false
zero
72,256,098
How to replace fragments using NavigationGraph in NestedFragments
<p>Below I have mentioned a hierarchy of multiple nested fragments where I need to replace and add new fragments as child fragments. So I have completed to show <code>BottomNavigationView</code> but whenever I tried to load a fragment inside that I face <code>IllegalArgumentException</code>.</p> <pre><code>MainActivity...
Below I have mentioned a hierarchy of multiple nested fragments where I need to replace and add new fragments as child fragments. So I have completed to show BottomNavigationView but whenever I tried to load a fragment inside that I face IllegalArgumentException . [CODE] The error looks like [CODE] Here MainTabFragment...
android|android-fragments|android-navigation-graph
0
2022-05-16T08:17:57.583Z
2,022
5
8
0
18
0
690
65
3
6
true
true
false
false
false
false
zero
72,256,150
Flutter Error: Method 'addPostFrameCallback' cannot be called on 'WidgetsBinding?' because it is potentially null
<p>Whenever I try to run flutter app, I am getting this error.</p> <pre><code>../flutter/.pub-cache/hosted/pub.dartlang.org/percent_indicator-4.2.1/lib/linear_percent_indicator.dart:162:5: Warning: The class 'WidgetsBinding' cannot be null. Try replacing '?.' with '.' WidgetsBinding?.instance.addPostFrameCallback((...
Whenever I try to run flutter app, I am getting this error. [CODE] Here, is my Flutter doctor output [CODE] I have tried following things already Invalidate and restart android-studio Deleted .gradle folder and try building again flutter clean and then 'flutter pub get , flutter pub cache repair` also deleted build fol...
flutter|android-studio|gradle|flutter-dependencies
9
2022-05-16T08:23:04.513Z
2,022
5
8
0
12,436
9
594
113
4
4
true
false
true
true
false
false
medium
72,256,158
Parse json from head with jsoup
<p>I am tring to get the json from this url for example &quot;https://www.imdb.com/title/tt9598834/&quot;</p> <p>This is the code: suspend fun getRealRating(imdbCode: String): String = suspendCoroutine { cont -&gt;</p> <pre><code> val url = &quot;https://www.imdb.com/title/tt9598834/&quot; var document: ...
I am tring to get the json from this url for example &quot;https://www.imdb.com/title/tt9598834/&quot; This is the code: suspend fun getRealRating(imdbCode: String): String = suspendCoroutine { cont -> [CODE] I can see that document.head().allElements[0] contains script type=&quot;application/ld+json&quot; with json mo...
android|jsoup
0
2022-05-16T08:24:18.357Z
2,022
5
8
0
103
1
364
31
2
1
true
false
false
false
false
false
zero
72,256,202
Godot Screen Layout
<p>So I was wondering how to adapt Godot's screen layout to adjust to all mobile screens. I'm coding a mobile game on a MacBook and things get confusing with the sizing and stuff</p>
So I was wondering how to adapt Godot's screen layout to adjust to all mobile screens. I'm coding a mobile game on a MacBook and things get confusing with the sizing and stuff
android|ios|mobile|game-development|godot
0
2022-05-16T08:28:00.453Z
2,022
5
8
0
47
0
175
19
5
0
false
true
false
false
false
false
zero
72,256,320
My findViewById is not working. in my fragment
<p>My findViewById is not working. it does not link...</p> <p>////my fragment.contacts.xml</p> <pre><code>*&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; xmlns:app=&quot;http://schemas.android.com/apk/res-auto&qu...
My findViewById is not working. it does not link... ////my fragment.contacts.xml [CODE] ////end of fragmentcontacts.xml my contactsfragment.kt
kotlin|android-fragments
0
2022-05-16T08:38:15.830Z
2,022
5
8
0
37
1
142
46
2
1
true
false
false
false
false
false
zero
72,256,332
Emulator process terminated, how do I get Android Studio emulators to run?
<p>How do I get Android Studio virtual devices to run (stop terminating)?<br /> Android Studio Chipmunk (2021.2.1)</p> <p>This is the first time using Android Studio for me and I'm trying to get the Android emulator to work, to start learning Java. Everytime I try to run an emulator I get the following message:</p> <p>...
How do I get Android Studio virtual devices to run (stop terminating)? Android Studio Chipmunk (2021.2.1) This is the first time using Android Studio for me and I'm trying to get the Android emulator to work, to start learning Java. Everytime I try to run an emulator I get the following message: The emulator process fo...
android-studio|debugging|sdk|android-emulator|virtual-device-manager
1
2022-05-16T08:39:03.277Z
2,022
5
8
0
848
2
1,427
74
5
1
true
false
false
false
false
false
low
72,256,367
Listview for Multiple model class
<p>how to create a listview adapter on Android Studio(Java) for multiple model class which extending parent class.</p> <p>so : gbpClass extends Money =&gt; ArrayList eurClass extends Money =&gt; ArrayList</p> <p>I want to create list with gbpClass items and eurClass items. 1 button will show gbp list items. 1 button w...
how to create a listview adapter on Android Studio(Java) for multiple model class which extending parent class. so : gbpClass extends Money => ArrayList eurClass extends Money => ArrayList I want to create list with gbpClass items and eurClass items. 1 button will show gbp list items. 1 button will show eur list items....
android|listview|generics|arraylist|adapter
0
2022-05-16T08:41:14.883Z
2,022
5
8
0
73
2
415
33
5
0
false
false
false
false
false
false
zero
72,256,374
How to add Title in One Signal push notifications for Web App?
<p>The below PHP code for Onesignal push notification is working fine,</p> <p>But how do I add Title to the notification along with a defined custom icon instead of the default bell?</p> <pre><code>//Push Notifications Starts User -------------------------------------------------------------- n...
The below PHP code for Onesignal push notification is working fine, But how do I add Title to the notification along with a defined custom icon instead of the default bell? [CODE] Please note that &quot;ic_launcher_round.png&quot; is in my studio sdk inside folders &quot;res->mipmap->ic_launcher_round&quot; The push is...
javascript|php|android-studio|push-notification|onesignal
0
2022-05-16T08:41:49.303Z
2,022
5
8
0
155
0
458
62
5
1
true
true
false
false
false
false
zero
72,256,510
Search for a Label which created on runtime in android app in Delphi
<p>In an android app, in a ListBox i'm creating ListBoxItems, into each Item a reactangle and into each rectangle i'm ctreating 5 labels all this dynamically in RUN TIME, 5 labels for each Listboxitem created. The only unique property of the labels is the name who changes for each listboxitem that created. Now, i can't...
In an android app, in a ListBox i'm creating ListBoxItems, into each Item a reactangle and into each rectangle i'm ctreating 5 labels all this dynamically in RUN TIME, 5 labels for each Listboxitem created. The only unique property of the labels is the name who changes for each listboxitem that created. Now, i can't fi...
android|delphi
0
2022-05-16T08:53:01.920Z
2,022
5
8
0
83
2
966
68
2
2
true
false
false
false
false
false
zero
72,256,552
Can apps on the playstore be downloaded by age group below the set target audience in google play console?
<p>Im wondering if i set age group 13+ on my app, will it be visible to the age group below 13 on the playstore? Maybe with parent consent? Or can it not be downloaded at all if the account is below 13 years old?</p>
Im wondering if i set age group 13+ on my app, will it be visible to the age group below 13 on the playstore? Maybe with parent consent? Or can it not be downloaded at all if the account is below 13 years old?
android|google-play|google-play-console
1
2022-05-16T08:57:23.563Z
2,022
5
8
0
32
0
209
106
3
0
false
true
false
false
false
false
low
72,256,629
Forwarding a state in lambda causes recomposition even when state doesn't change
<p>If <code>X</code>, <code>Y</code> are of type <code>MutableState&lt;String&gt;</code>, in the following snippet <code>ComposableB</code>, <code>ComposableC</code> and <code>ComposableD</code> are recomposed everytime <code>X</code>'s state is changed.</p> <p><strong>Case 1</strong></p> <pre><code>@Composable fun Com...
If X , Y are of type MutableState<String> , in the following snippet ComposableB , ComposableC and ComposableD are recomposed everytime X 's state is changed. Case 1 [CODE] But in the following snippet only ComposableB and ComposableC are recomposed everytime X 's state is changed Case 2 [CODE] Why is this so? Shouldn'...
android|android-jetpack-compose|compose-recomposition
0
2022-05-16T09:03:05.293Z
2,022
5
9
0
213
0
590
80
3
2
true
true
false
false
false
false
zero
72,256,779
how to launch an event with angle changing in flutter_background_geolocation plugin
<p>I'm working on converting mobile phones to GPS device software. To do that I found this plugin: <a href="https://pub.dev/packages/flutter_background_geolocation" rel="nofollow noreferrer">https://pub.dev/packages/flutter_background_geolocation</a> At the moment, everything are working fine, but we missed to launch ...
I'm working on converting mobile phones to GPS device software. To do that I found this plugin: https://pub.dev/packages/flutter_background_geolocation At the moment, everything are working fine, but we missed to launch the onUpdate location event by changing of Angle to make the path of user more precise. thank you.
android|flutter|location
0
2022-05-16T09:14:13.963Z
2,022
5
9
0
17
0
318
83
3
0
false
true
false
false
false
false
zero
72,256,787
Adding Google Tag Manager to a Flutter Project duplicates Firebase events and spams a lot of screen_view events (8k) at startup
<p>I am having a problem with firebase analytics, after adding Google tag manager to the project, Firebase starts sending duplicate events (for each event) and at app startup the &quot;screen_view&quot; event is spamed multiple times (5k-10k events). Details:</p> <ul> <li>the problem is on Android, the app is written u...
I am having a problem with firebase analytics, after adding Google tag manager to the project, Firebase starts sending duplicate events (for each event) and at app startup the &quot;screen_view&quot; event is spamed multiple times (5k-10k events). Details: the problem is on Android, the app is written using Flutter. I ...
android|firebase|flutter|events|google-tag-manager
1
2022-05-16T09:14:40.970Z
2,022
5
9
0
152
0
815
127
5
0
false
true
false
false
false
false
low
72,256,882
How to solve "Socket error: [Errno 110] Connection timed out" in Chaquopy Android-kotlin
<p>Recently I've been working on <b>Chaquopy</b>, Android-Python Library and my aim is to build a <b>Port Scanner</b> in android.</p> <p>Code for<b> Port Scanner Activity</b></p> <pre><code> import android.app.Activity import android.content.Context import android.content.Intent import android.os.AsyncTask import andro...
Recently I've been working on Chaquopy , Android-Python Library and my aim is to build a Port Scanner in android. Code for Port Scanner Activity [CODE] Python file: portscanning.py [CODE] The Error I got: Now if I run this Python file in normal windows-python interpreter then everything works fine So is there some kind...
python|android|kotlin|sockets
0
2022-05-16T09:21:50.250Z
2,022
5
9
0
522
0
501
88
4
2
true
true
false
false
false
false
zero
72,256,935
When I'm running my app , my app is automatically restart and showing this error
<p>When I'm Running My App in emulator and in my phone by help of usb debugging in android studio i'm facing this error please solve and tell me solution</p> <pre><code>E/example.gupshu: Unknown bits set in runtime_flags: 0x8000 E/gralloc: Arm Module v1.0 E/ion: ioctl c0044901 failed with code -1: Invalid argument </co...
When I'm Running My App in emulator and in my phone by help of usb debugging in android studio i'm facing this error please solve and tell me solution [CODE]
java|android-studio|runtime-error
0
2022-05-16T09:25:46.457Z
2,022
5
9
0
60
0
157
80
3
1
true
true
false
false
false
false
zero
72,256,955
What is the right way to install APK for each Android version?
<p>I'm making an APK Install app and I've been through a lot. Especially, versioning. to do that, i looked up some posting and StackOverFlow. but All the postings make me more confused now. So, What is the right way?</p> <p>first of all, please check my code below about installing for each version. and Let's talk about...
I'm making an APK Install app and I've been through a lot. Especially, versioning. to do that, i looked up some posting and StackOverFlow. but All the postings make me more confused now. So, What is the right way? first of all, please check my code below about installing for each version. and Let's talk about what's th...
android|apk|android-fileprovider|android-package-managers
4
2022-05-16T09:27:21.237Z
2,022
5
9
0
236
0
2,429
62
4
5
true
true
false
false
false
false
low
72,257,081
Android Keystore and manually data backup for signal or other apps
<p>I'm trying to build an app to backup and restore data for rooted android 11 phone it works fine except for some app like signal that use the keystore so I'm trying what exactly goes wrong which is related with the app changing it's ID on new install I hope someone can give me some hint:</p> <p>I've followed what is ...
I'm trying to build an app to backup and restore data for rooted android 11 phone it works fine except for some app like signal that use the keystore so I'm trying what exactly goes wrong which is related with the app changing it's ID on new install I hope someone can give me some hint: I've followed what is mentioned ...
android|keystore|android-keystore
0
2022-05-16T09:36:13.880Z
2,022
5
9
0
159
0
2,298
66
3
1
true
true
false
false
false
false
zero
72,257,414
How to remove top shadow to tab layout in android
<p>**Hi i need add shadow under my tab layout and remove top of the tablayout **</p> <p><strong>This is My Tab layout</strong></p> <p><a href="https://i.stack.imgur.com/m9YiA.png" rel="nofollow noreferrer">enter image description here</a></p> <p><strong>My Activity xml :-</strong></p> <pre><code>&lt;com.google.android....
**Hi i need add shadow under my tab layout and remove top of the tablayout ** This is My Tab layout enter image description here My Activity xml :- [CODE]
java|android
0
2022-05-16T10:00:43.743Z
2,022
5
10
0
52
1
154
49
2
1
true
false
false
false
false
false
zero
72,257,463
Default Radio value not get cleared or deselect after choose new value
<p>in for loop I have setChecked, but after choosing new value does not get deselected. Both the values get selected which is previous setChecked value and newly selected value.</p> <pre><code>textInputLayout = new TextInputLayout(context); textInputLayout.setPadding(0, -65, 0, -20); for (int i = 0; i &lt; formElement...
in for loop I have setChecked, but after choosing new value does not get deselected. Both the values get selected which is previous setChecked value and newly selected value. [CODE]
java|android|radio-button|radio-group|android-radiogroup
0
2022-05-16T10:04:45.033Z
2,022
5
10
0
19
0
181
70
5
1
true
true
false
false
false
false
zero
72,257,490
Received error code [OVER_QUERY_LIMIT] when using function getRouteBetweenCoordinates()
<p>Yesterday I was able to use it, but today when I called for the 2nd time it returned the error [OVER_QUERY_LIMIT]. I make sure I only call getRouteBetweenCoferences() 1 time at a time. Statistics from my google API. <a href="https://i.stack.imgur.com/i1a7p.png" rel="nofollow noreferrer"><img src="https://i.stack.img...
Yesterday I was able to use it, but today when I called for the 2nd time it returned the error [OVER_QUERY_LIMIT]. I make sure I only call getRouteBetweenCoferences() 1 time at a time. Statistics from my google API. Now no matter how long I wait, when I call getRouteBetweenCoferences() I still get the OVER_QUERY_LIMIT ...
android|flutter
0
2022-05-16T10:07:10.443Z
2,022
5
10
0
24
0
366
87
2
0
false
true
false
false
false
false
zero
72,257,535
Bridge connection between Hololens, Android and Haptic Vest to send events?
<p>I have an issue connecting my Unity application on Hololens to a (haptic vest) Bluetooth. The problem is there is no SDK for Hololens to connect to the Haptic vest. **- I want to maintain a connection between my HoloLens unity app and the haptic vest but cannot figure out how.</p> <ul> <li>There is an Android SDK fo...
I have an issue connecting my Unity application on Hololens to a (haptic vest) Bluetooth. The problem is there is no SDK for Hololens to connect to the Haptic vest. **- I want to maintain a connection between my HoloLens unity app and the haptic vest but cannot figure out how. There is an Android SDK for the Vest but I...
c#|android|unity3d|bluetooth|hololens
1
2022-05-16T10:11:16.317Z
2,022
5
10
0
79
2
771
75
5
0
false
false
false
false
false
false
low
72,257,801
Building custom android kernel
<p>how do I add the modified android kernel's image in the AOSP 10 emulator so that after the build it has the new configuration and not the default one in the prebuilts directory?</p> <p>I've tried and built the bzImage with the new kernel configurations and then with this command &quot;emulator -kernel --bzImage path...
how do I add the modified android kernel's image in the AOSP 10 emulator so that after the build it has the new configuration and not the default one in the prebuilts directory? I've tried and built the bzImage with the new kernel configurations and then with this command &quot;emulator -kernel --bzImage path&quot; tri...
embedded-linux|android-kernel
0
2022-05-16T10:31:19.733Z
2,022
5
10
0
59
0
467
30
2
0
false
true
false
false
false
false
zero
72,258,003
After adding ML Kit for Translate api on Android, Its increasing app size dramatically
<p>After adding mlkit translation api <code>implementation 'com.google.mlkit:translate:17.0.0'</code> my app size increase dramatically.</p> <p>My primary app size was 12mb in release build after added mlkit it's now 35mb. How to decrease my app size?</p>
After adding mlkit translation api implementation 'com.google.mlkit:translate:17.0.0' my app size increase dramatically. My primary app size was 12mb in release build after added mlkit it's now 35mb. How to decrease my app size?
android|google-mlkit
0
2022-05-16T10:47:49.060Z
2,022
5
10
0
86
0
228
86
2
0
false
true
false
false
false
false
zero
72,258,116
Problem connecting my unity App to Amazon aws rds
<p>i made a straightforward App in unity with the objective to learn both how to make apps in unity and upload the data from the app to an amazon database,right now the app opens and presents you with a choice of language and a selector for a country and then it just shows an empty view saying data inserted .</p> <p>W...
i made a straightforward App in unity with the objective to learn both how to make apps in unity and upload the data from the app to an amazon database,right now the app opens and presents you with a choice of language and a selector for a country and then it just shows an empty view saying data inserted . What the cod...
android|amazon-web-services|unity3d
0
2022-05-16T10:57:07.610Z
2,022
5
10
0
57
0
1,314
49
3
2
true
true
false
false
false
false
zero
72,258,182
last question is moving to next screen even for wrong answer
<p>the main issue is when the last question's position come it moves to winning screen even answer is wrong</p> <p>{ val mQuestionList1 = mQuestionList</p> <pre><code> val questions = if (mQuestionList1 != null) mQuestionList1.get(mCurrentPosition) else null if (mCurrentPosition &lt;mQuestionList.size-...
the main issue is when the last question's position come it moves to winning screen even answer is wrong { val mQuestionList1 = mQuestionList [CODE] else { this is for 3 consective wrong answers [CODE] R.drawable.correct_answer) // this coroutine is for delying and for getting result when true answer is callled [CODE]
java|android|kotlin
0
2022-05-16T11:02:33.693Z
2,022
5
11
0
34
0
319
60
3
3
true
true
false
false
false
false
zero
72,258,324
disable android device keyboard appearing when selecting an edit box
<p>I have a point of sales screen created for users to purchase products, And have created my own keyboard on the screen. However when I deploy to an android device the android keyboard pops up when I select the edt box. How do I stop the Android devices keyboard from appearing as I need to use the keyboard I created.<...
I have a point of sales screen created for users to purchase products, And have created my own keyboard on the screen. However when I deploy to an android device the android keyboard pops up when I select the edt box. How do I stop the Android devices keyboard from appearing as I need to use the keyboard I created.
android|delphi|firemonkey|pascal
0
2022-05-16T11:16:11.073Z
2,022
5
11
0
49
1
316
68
4
0
false
false
false
false
false
false
zero
72,258,707
Whenever I kill my app, the service is running but speech to text not working
<p>I created a speech to text app and it's working in the background but whenever I kill my app, the service is running but speech to text not working I want my app service to work properly after killing my app</p>
I created a speech to text app and it's working in the background but whenever I kill my app, the service is running but speech to text not working I want my app service to work properly after killing my app
java|android|speech-to-text
0
2022-05-16T11:46:26.190Z
2,022
5
11
0
22
0
207
77
3
0
false
true
false
false
false
false
zero
72,258,767
Tests when run multiple times then driver is not working after getOrientaion(used for making the script wait) method is run
<p>I've created an appium script and my testcases contain wait functionality i.e. I'm making any app like youtube or any game wait for long duration of times. The Wait code is like this:</p> <pre><code>for(int j=1; j&lt;((min*2)+1);j++) { Thread.sleep(30000); driver.getOrientation(...
I've created an appium script and my testcases contain wait functionality i.e. I'm making any app like youtube or any game wait for long duration of times. The Wait code is like this: [CODE] Here min is the number of minutes that i'm trying to wait the application. I'm also using invocationCount attribute of @Test test...
appium-android
0
2022-05-16T11:51:39.547Z
2,022
5
11
0
33
0
2,348
123
1
1
true
true
false
false
false
false
zero
72,258,902
Android Asynchronous Http Client slow in one network but fast in another
<p>I am using the <a href="https://loopj.com/android-async-http/" rel="nofollow noreferrer">Android Asynchronous Http Client library</a> in my application to communicate with my own server. The server is currently in in my home network. When I was firstly developing the server and the app, it all worked fine. Then I mo...
I am using the Android Asynchronous Http Client library in my application to communicate with my own server. The server is currently in in my home network. When I was firstly developing the server and the app, it all worked fine. Then I moved to another location (new house with new wifi) and since that time the HTTP re...
android|networking|server|httprequest|flask-restful
0
2022-05-16T12:02:38.047Z
2,022
5
12
0
22
0
782
72
5
3
true
true
false
false
false
false
zero
72,258,905
Changing orientation with keyboardingview on open keyboard in react-native
<p>I have a chat page(I use react-navaigation. this screen is in stack navigation). On Android devices, when I changed orientation with the keyboard open, the design is broken. As in video <a href="https://youtu.be/Dh7gau1QP9A" rel="nofollow noreferrer">https://youtu.be/Dh7gau1QP9A</a></p> <p>My code:</p> <pre><code>re...
I have a chat page(I use react-navaigation. this screen is in stack navigation). On Android devices, when I changed orientation with the keyboard open, the design is broken. As in video https://youtu.be/Dh7gau1QP9A My code: [CODE]
android|react-native
0
2022-05-16T12:02:55.623Z
2,022
5
12
0
25
0
230
74
2
1
true
true
false
false
false
false
zero
72,258,909
Genymotion SaaS with Android Studio
<p>I have troubles with desktop Genymotion emulator and i decided to try cloud version.</p> <p><strong>My question:</strong> Can I connect Genymotion SaaS to Android Studio and use it just like the desktop version?</p> <p>Thanks for your answers =)</p>
I have troubles with desktop Genymotion emulator and i decided to try cloud version. My question: Can I connect Genymotion SaaS to Android Studio and use it just like the desktop version? Thanks for your answers =)
android-studio|genymotion
0
2022-05-16T12:03:17.860Z
2,022
5
12
0
24
0
214
35
2
0
false
true
false
false
false
false
zero
72,258,924
Need to create a folder for my Android application in Internal Storage
<p>I am creating an android application where I need to create a folder in Internal Storage to store the files generated by user (Just like how whatsapp creats one in Internal storage). I was using MANAGE_EXTERNAL_STORAGE permission but google has rejected my app because of it, and no other way is working for that. If ...
I am creating an android application where I need to create a folder in Internal Storage to store the files generated by user (Just like how whatsapp creats one in Internal storage). I was using MANAGE_EXTERNAL_STORAGE permission but google has rejected my app because of it, and no other way is working for that. If the...
android|kotlin|android-permissions
2
2022-05-16T12:04:04.640Z
2,022
5
12
0
198
1
768
70
3
3
true
false
false
false
false
false
low
72,259,022
How to prevent talkback to announce "double tap to activate" after every item in focus android?
<p>In android talkback announce content descriptions followed by element type and after a few second announces - double tap to activate. how to prevent this.</p>
In android talkback announce content descriptions followed by element type and after a few second announces - double tap to activate. how to prevent this.
android
0
2022-05-16T12:12:06.880Z
2,022
5
12
0
40
1
154
95
1
0
false
false
false
false
false
false
zero
72,259,052
Unresolved reference:database for Firebase Realtime database in my Kotlin program
<p>I am trying to use Firebase Realtime database in Kotlin. I have followed <a href="https://firebase.google.com/docs/database/android/start" rel="nofollow noreferrer">this tutorial</a> but I think that something is wrong, because I get an error before compiling when I want to retrieve an instance of the database (Unre...
I am trying to use Firebase Realtime database in Kotlin. I have followed this tutorial but I think that something is wrong, because I get an error before compiling when I want to retrieve an instance of the database (Unresolved reference DataBasereference (or database if I uncomment the first line of the function tryTo...
android|firebase|kotlin
0
2022-05-16T12:15:04.167Z
2,022
5
12
0
194
1
548
81
3
3
true
false
false
false
false
false
zero
72,259,091
animatedVectorDrawable is not animating in for loop
<p>I have been trying to implement animation vectors . I managed to do it correctly but there's seem to be a problem. I used recycler view to display all contacts. I have used selected and unselected functions to play animations on contact profile pic. I did it and selecting and unselecting animations have been working...
I have been trying to implement animation vectors . I managed to do it correctly but there's seem to be a problem. I used recycler view to display all contacts. I have used selected and unselected functions to play animations on contact profile pic. I did it and selecting and unselecting animations have been working co...
java|android-studio|for-loop|animation|animatedvectordrawable
0
2022-05-16T12:17:45.450Z
2,022
5
12
0
26
0
884
51
5
2
true
true
false
false
false
false
zero
72,259,202
Change the size of box in Jetpack Compose doesnt work
<p>i am trying to specify the size for my box composable but for some reason it just fills out the whole screen</p> <pre><code>@Composable fun InfoBox() { Box(modifier = Modifier .background(Color.Blue) .size(width = 300.dp, height = 370.dp) .border(BorderStroke(2.dp, Color.Red))) { ...
i am trying to specify the size for my box composable but for some reason it just fills out the whole screen [CODE] [CODE] What am i missing? It seems that i am using .fillMaxSize but i never use this and just use .size(width = ...,height=...) to set my box size?
android|android-layout|android-jetpack-compose
2
2022-05-16T12:27:12.033Z
2,022
5
12
0
31
0
263
53
3
2
true
true
false
false
false
false
low
72,259,251
How can i avoid the restart of my application at unwanted times ? Flutter
<p>I am using a package named <code>flutter_background_service</code> which allows me to have a service running h24 to search information on the Web. The problem is that normally there is a loop with an interval that can change to fetch information.</p> <p>I noticed by going to see the different services in the develop...
I am using a package named flutter_background_service which allows me to have a service running h24 to search information on the Web. The problem is that normally there is a loop with an interval that can change to fetch information. I noticed by going to see the different services in the developer tools (Oneplus Nord ...
android|flutter|gradle|service
1
2022-05-16T12:30:49.067Z
2,022
5
12
0
55
0
751
73
4
0
false
true
false
false
false
false
low
72,259,252
Animate scrolling a wide image horizontally that goes out of screen in compose
<p>I am trying to implement a scrolling image that is much wider then device's screen. See example:</p> <p><a href="https://i.stack.imgur.com/WGC6q.gif" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/WGC6q.gif" alt="example" /></a></p> <p>Right now I implemented it using Row with horizontalScroll modifie...
I am trying to implement a scrolling image that is much wider then device's screen. See example: Right now I implemented it using Row with horizontalScroll modifier, and calling scrollState.animateScrollTo I do not like this implementation since I need this animation to go back and forth if the image reaches it's end, ...
android|android-jetpack-compose
1
2022-05-16T12:30:53.413Z
2,022
5
12
0
112
1
784
78
2
1
true
false
false
false
false
false
low
72,259,302
Can't add Firebase document Id to dataClass
<p>I have a data class for data that come from user entries. İt is carrying this data to Firebase. This data class also includes documentId variable which is a empty string by default. I want to add document Id's that Firebase created automatically. I tried every way I could think of. But it takes default value in any ...
I have a data class for data that come from user entries. İt is carrying this data to Firebase. This data class also includes documentId variable which is a empty string by default. I want to add document Id's that Firebase created automatically. I tried every way I could think of. But it takes default value in any way...
android|firebase|kotlin|google-cloud-platform|google-cloud-firestore
0
2022-05-16T12:35:26.207Z
2,022
5
12
0
62
1
609
43
5
4
true
false
false
false
false
false
zero
72,259,384
remove element from list while overload function with Frida
<p>I debug an android application with Frida and I overload function that return <code>java.util.List&lt;SomeObject&gt;</code></p> <p>I want to remove the first element from List that the function is return.</p> <p>How can I do that please?</p> <pre><code>Java.perform(function x() { var my_class = Java.use(&qu...
I debug an android application with Frida and I overload function that return java.util.List<SomeObject> I want to remove the first element from List that the function is return. How can I do that please? [CODE] Here is c function: [CODE]
javascript|java|android|overloading|frida
2
2022-05-16T12:42:18.007Z
2,022
5
12
0
89
1
238
59
5
2
true
false
false
false
false
false
low