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
73,830,908
Navigate back to home page if there is no user interaction for x duration (user is idle)
<p>I am working on a <strong>self management app</strong> and I need to implement an <strong>inactivity timer</strong> or something similar to know if the user is idling (without interacting with a view for x duration) so when this happens it returns to the home page.</p> <p>Is this possible? Already check app lifecycl...
I am working on a self management app and I need to implement an inactivity timer or something similar to know if the user is idling (without interacting with a view for x duration) so when this happens it returns to the home page. Is this possible? Already check app lifecycle docs and doesn't found any relevant info. ...
c#|android|timer|maui|.net-maui
0
2022-09-23T17:00:49.360Z
2,022
9
17
4
31
1
625
88
5
0
false
false
false
false
false
false
zero
73,831,007
Stucked while making a splash screen. Unknown error
<pre><code>Running Gradle task 'assembleDebug'... √ Built build\app\outputs\flutter-apk\app-debug.apk. Debug service listening on ws://127.0.0.1:55743/-QUEMI0IafA=/ws Syncing files to device Android SDK built for x86... I/zygote ( 6057): Do partial code cache collection, code=15KB, data=19KB I/zygote ( 6057): After ...
[CODE] I am making a splash screen it is working fine but suddenly the error occurs. The error is in the last line.
android|flutter|dart|flutter-dependencies|flutter-debug
0
2022-09-23T17:14:12.703Z
2,022
9
17
4
36
0
115
51
5
1
true
true
false
false
false
false
zero
73,831,040
Android Treble - AIDL for HAL
<p>What I understand is, if an application is requesting for any service h/w, the flow goes:</p> <p>Process A(Calling Application) --- AIDL --&gt; System Server process B --- AIDL ---&gt; HAL module</p> <p>In terms of, context switching, copying data and etc., is done twice through binder interfaces. Is it not overdoin...
What I understand is, if an application is requesting for any service h/w, the flow goes: Process A(Calling Application) --- AIDL --> System Server process B --- AIDL ---> HAL module In terms of, context switching, copying data and etc., is done twice through binder interfaces. Is it not overdoing of binder work?
android|aidl|hal|android-binder
0
2022-09-23T17:17:32.350Z
2,022
9
17
4
18
0
314
29
4
0
false
true
false
false
false
false
zero
73,831,119
onConfigurationChanged() method is not called when Locale was changed
<p>I want to make an opportunity to change language in my single activity app. When app's Locale was changed the onConfigurationChanged() method must be called by system and I think I can use it to recreate Activity but as I see in logs onConfigurationChanged() was not called. Here is a part from my Manifest</p> <pre><...
I want to make an opportunity to change language in my single activity app. When app's Locale was changed the onConfigurationChanged() method must be called by system and I think I can use it to recreate Activity but as I see in logs onConfigurationChanged() was not called. Here is a part from my Manifest [CODE] My app...
android|locale
0
2022-09-23T17:26:22.513Z
2,022
9
17
4
14
2
772
69
2
2
true
false
false
false
false
false
zero
73,831,171
Does the FireStoreRecycler or Query make a asynchronous call to the database?
<p>I've been fiddling around with the <code>Firebase Firestore</code> and have been using the <code>FireStoreUI</code> library to facilitate displaying data from my database in my RecyclerView.</p> <p>However, I noticed that by using the <code>Query</code> object and it's <code>orderBy</code> function, I am able to onl...
I've been fiddling around with the Firebase Firestore and have been using the FireStoreUI library to facilitate displaying data from my database in my RecyclerView. However, I noticed that by using the Query object and it's orderBy function, I am able to only display a single value from my Array that's inside the datab...
java|android|google-cloud-firestore|firebaseui
0
2022-09-23T17:32:18.347Z
2,022
9
17
4
18
1
937
77
4
3
true
false
false
false
false
false
zero
73,831,191
How to add array of views to layout kotlin
<blockquote> <p>I want to add a list of views to a layout. The views are added, but are not showing up.</p> </blockquote> <pre><code> val container:LinearLayout=findViewById(R.id.container) val card:FrameLayout=findViewById(R.id.card) card.setBackgroundColor(Color.parseColor(&quot;#E67E22&quot;)) val ca...
I want to add a list of views to a layout. The views are added, but are not showing up. [CODE]
android|kotlin|layout|view
-1
2022-09-23T17:34:58.590Z
2,022
9
17
4
25
2
94
42
4
1
true
false
false
false
false
true
negative
73,831,246
What's the solution for
<p>error</p> <pre><code>Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'. </code></pre>
error [CODE]
android|firebase|firebase-realtime-database|firebase-authentication
-3
2022-09-23T17:40:47.933Z
2,022
9
17
4
38
0
12
23
4
1
true
true
false
false
false
true
negative
73,831,295
Why can I not inherit from ListAdapter with my custom defined class in Kotlin?
<p>I am working on an Todo-list as an android app to get started with Kotlin, but I am running into the problem, that my TodoAdapter class (which is supposed to define what to do with said Todos in a recyclerview as far as I understood?) can't inherit from the ListAdapter class for some reason.</p> <p>I believe I didn'...
I am working on an Todo-list as an android app to get started with Kotlin, but I am running into the problem, that my TodoAdapter class (which is supposed to define what to do with said Todos in a recyclerview as far as I understood?) can't inherit from the ListAdapter class for some reason. I believe I didn't have the...
android|kotlin|android-recyclerview|android-listadapter
0
2022-09-23T17:47:08.320Z
2,022
9
17
4
20
1
732
78
4
3
true
false
false
false
false
false
zero
73,831,516
Android auto APP not showing in pyshical device (is not listed in Android Auto app list) but works fine in DHU
<p>*** solved becuse I had to add the android auto &quot;eleements&quot; inside the actual app, and not in a separated one ****</p>
*** solved becuse I had to add the android auto &quot;eleements&quot; inside the actual app, and not in a separated one ****
android|kotlin|google-play|android-auto
1
2022-09-23T18:12:46.967Z
2,022
9
18
4
43
1
124
110
4
0
false
false
false
false
false
false
low
73,831,591
I am using retrofit, recyclerview and coroutines to build a Quotes displaying app,but the app won't run
<p>I am new to android and wanted to create a quotes displaying app using an api and show content and author in textview, but the app doesn't even run or open.</p> <p><strong>1.MainActivity.kt</strong></p> <pre><code>package com.example.latestnews import androidx.appcompat.app.AppCompatActivity import android.os.Bundl...
I am new to android and wanted to create a quotes displaying app using an api and show content and author in textview, but the app doesn't even run or open. 1.MainActivity.kt [CODE] 2.activity_main.xml [CODE] This is my adapter class 3.Adapter.kt [CODE] 4.Quotesapi.kt [CODE] 5.RetrofitInstance.kt [CODE] 6.Data.kt [CODE...
json|kotlin|android-recyclerview|retrofit2|kotlin-coroutines
0
2022-09-23T18:21:03.590Z
2,022
9
18
4
14
0
365
103
5
8
true
true
false
false
false
false
zero
73,831,625
Unable to launch my app in quest 2 from web
<p>I have tried to launch my installed app in my quest 2 device from webGL build by using unity deep linking:</p> <p>At first I have tried this way below:</p> <p><a href="https://docs.unity3d.com/Manual/deep-linking-android.html" rel="nofollow noreferrer">https://docs.unity3d.com/Manual/deep-linking-android.html</a></p...
I have tried to launch my installed app in my quest 2 device from webGL build by using unity deep linking: At first I have tried this way below: https://docs.unity3d.com/Manual/deep-linking-android.html And I tried by hosting my html code from my git hub and tried to launch my app was working fine in my android phone u...
c#|android|unity3d|oculus|unity-webgl
0
2022-09-23T18:24:58.103Z
2,022
9
18
4
34
0
503
43
5
0
false
true
false
false
false
false
zero
73,831,639
Kivy android ModuleNotFoundError: No module named 'requests'
<p>I'm trying to run a Kivy android app that uses requests module</p> <p>This is my <strong>buildozer.spec</strong> requirements and permissions:</p> <pre><code>requirements = python3,kivy,hostpython3,openssl,certifi,chardet,urllib3,idna,requests android.permissions = INTERNET </code></pre> <p>Deploying the app, does t...
I'm trying to run a Kivy android app that uses requests module This is my buildozer.spec requirements and permissions: [CODE] Deploying the app, does try to open but instantly closes with this message: ModuleNotFoundError: No module named 'requests' This is a minimal example to reproduce the situation: [CODE] How can I...
python|android|python-requests|kivy|buildozer
0
2022-09-23T18:27:06.140Z
2,022
9
18
4
34
0
359
60
5
2
true
true
false
false
false
false
zero
73,831,690
How to make a fast-scrolling scrollbar more responsive to touch?
<p>So I've enabled fast scrolling <code>(fastScrollingEnabled=&quot;true&quot;)</code> and declared the drawables needed for it to function properly (vertical and horizontal). I need to apply this to three types of views:</p> <ul> <li>Recycler View</li> <li>Grid View</li> <li>List View</li> </ul> <p>Fast scrolling only...
So I've enabled fast scrolling (fastScrollingEnabled=&quot;true&quot;) and declared the drawables needed for it to function properly (vertical and horizontal). I need to apply this to three types of views: Recycler View Grid View List View Fast scrolling only works on the Recycler View (poorly I can drag it and most of...
java|android|touch|scrollbar|fastscroll
0
2022-09-23T18:33:45.970Z
2,022
9
18
4
29
0
766
64
5
0
false
true
false
false
false
false
zero
73,831,755
How to convert and pass data in current situation
<p>I am using a program called Frida which runs .js. I am trying to use Send() function to pass information to a python file. So far it works but i am unable to pass a specific variable called <strong>temp</strong>. Here is the code:</p> <p>Java Code:</p> <pre><code>Java.perform(function() { const CYFMonitor = Java...
I am using a program called Frida which runs .js. I am trying to use Send() function to pass information to a python file. So far it works but i am unable to pass a specific variable called temp . Here is the code: Java Code: [CODE] Python Code: [CODE] OUTPUT: [CODE] The variable temp has data which looks like this: [C...
javascript|python|android|frida
0
2022-09-23T18:41:04.123Z
2,022
9
18
4
32
0
649
49
4
4
true
true
false
false
false
false
zero
73,832,043
how to fix this error adb shell failed to write the SHA hash?
<pre><code>Error 1 retrieving device properties for AOSP on IA Emulator: /system/bin/sh: no closing quote Launching lib\main.dart on AOSP on IA Emulator in debug mode... Running Gradle task 'assembleDebug'... √ Built build\app\outputs\flutter-apk\app-debug.apk. /system/bin/sh: no closing quote Installing build\app\ou...
[CODE] Everything builds and installs perfectly on the emulator. But it can 't open the application itself and I has to close the old version every time and open a new one .
flutter|android-studio|adb
0
2022-09-23T19:13:41.740Z
2,022
9
19
4
29
0
173
61
3
1
true
true
false
false
false
false
zero
73,832,048
NullPointerException in in-App purchase code
<p>I am trying to implement the in-App purchase code in my android app. The idea is that when I press the button &quot;botonComprar&quot;, it activates the purchase flow, but when I press it I get this error:</p> <p><em>NullPointerException: Attempt to invoke virtual method 'void com.android.billingclient.api.BillingCl...
I am trying to implement the in-App purchase code in my android app. The idea is that when I press the button &quot;botonComprar&quot;, it activates the purchase flow, but when I press it I get this error: NullPointerException: Attempt to invoke virtual method 'void com.android.billingclient.api.BillingClient.startConn...
java|android|in-app-purchase
0
2022-09-23T19:13:57.043Z
2,022
9
19
4
24
0
569
44
3
1
true
true
false
false
false
false
zero
73,832,066
How to implement Android custom shadow view?
<p>I was using one dependency that was working fine, I have seen that it is deprecated, so I am not going to use it more, this was the dependency:<a href="https://github.com/loopeer/shadow" rel="nofollow noreferrer">dependency I was using</a></p> <p>If you see, the About of this depencency, says the following:</p> <blo...
I was using one dependency that was working fine, I have seen that it is deprecated, so I am not going to use it more, this was the dependency: dependency I was using If you see, the About of this depencency, says the following: Deprecated because of the performance not fine. Android custom shadow view, can replace you...
java|android|xml|animation|view
0
2022-09-23T19:16:45.260Z
2,022
9
19
4
25
0
650
44
5
3
true
true
false
false
false
false
zero
73,832,123
Flutter - firebase_app_check not working in release mode, how fix it?
<p>I using firebase_app_check in my flutter app. And I use AppCheck in Firebase. it turned out to be not easy to set up, there are a lot of &quot;white spots&quot; in the documentation. so in order:</p> <ol> <li>I enabled AppCheck on Firebase(for starage and Firestore).</li> <li>I selected &quot;Play Integrity&quot;(so...
I using firebase_app_check in my flutter app. And I use AppCheck in Firebase. it turned out to be not easy to set up, there are a lot of &quot;white spots&quot; in the documentation. so in order: I enabled AppCheck on Firebase(for starage and Firestore). I selected &quot;Play Integrity&quot;(so the documentation recomm...
android|flutter|firebase|google-cloud-firestore|firebase-app-check
0
2022-09-23T19:22:18.883Z
2,022
9
19
4
24
0
980
69
5
1
true
true
false
false
false
false
zero
73,832,130
Why I cannot change static final int field with reflection from kotlin android
<p>I have following java class with static final int which I need to change via reflection:</p> <pre><code>class DateValidator { public static final int DIFF = 20; } </code></pre> <p>And from Android Kotlin I try to change it value from 20 to 100:</p> <pre><code>class MainActivity : AppCompatActivity() { overrid...
I have following java class with static final int which I need to change via reflection: [CODE] And from Android Kotlin I try to change it value from 20 to 100: [CODE] And I have following output in Logcat: [CODE] Perhapse reflection doesn't work with primitive int?
java|android|kotlin|reflection
1
2022-09-23T19:22:57.650Z
2,022
9
19
4
48
2
266
78
4
3
true
false
false
false
false
false
low
73,832,222
Android mobile app's in-app update is not working
<p>I have implemented in-app update code to my android mobile app to check if any upgraded version is available with the google play store and notify if any and then download it. But it is not at all working.</p> <h2>My code(MainActivity.java) is, as follow:-</h2> <pre><code> import android.content.Intent; import andro...
I have implemented in-app update code to my android mobile app to check if any upgraded version is available with the google play store and notify if any and then download it. But it is not at all working. My code(MainActivity.java) is, as follow:- [CODE] I have also put implementation 'com.google.android.play:core:1.1...
java|android|auto-update|in-app
1
2022-09-23T19:33:19.860Z
2,022
9
19
4
24
0
435
49
4
1
true
true
false
false
false
false
low
73,832,298
Can you set custom content description for individual items in a dropdown list in Android?
<p>I was curious if there is a way to set the content description for each of the items in a drop down list? I'm using text input layout with Material Auto Complete Text View.</p> <p>The reason is that I had a list of days but it's shortened and some devices don't say the whole day name when using talkback. For example...
I was curious if there is a way to set the content description for each of the items in a drop down list? I'm using text input layout with Material Auto Complete Text View. The reason is that I had a list of days but it's shortened and some devices don't say the whole day name when using talkback. For example I have &q...
android|android-studio|kotlin
1
2022-09-23T19:42:34.440Z
2,022
9
19
4
22
1
482
90
3
0
false
false
false
false
false
false
low
73,832,437
In Android Studio, hardware buttons not working in AVD skins
<h3>Scenario 1</h3> <p>In <strong>Device Manager</strong>, I create <strong>Nexus One</strong> (or <strong>Nexus S</strong>) emulator with the default skin. The skin displays hardware buttons, the corresponding layout files have <strong>parts/.../buttons/...</strong> entries, software buttons are not displayed. But cli...
Scenario 1 In Device Manager , I create Nexus One (or Nexus S ) emulator with the default skin. The skin displays hardware buttons, the corresponding layout files have parts/.../buttons/... entries, software buttons are not displayed. But clicking on the hardware buttons does nothing. Scenario 2 In Device Manager , I c...
android-studio|button|avd|skin|device-manager
0
2022-09-23T19:59:02.550Z
2,022
9
19
4
19
0
714
60
5
0
false
true
false
false
false
false
zero
73,832,538
MANAGE_EXTERNAL_STORAGE doesn't work for android 11 device
<p>I added the manage_external_storage to my androidmainifest.xml file and to my java class where the permission part is yet it is not working for my android 11 device. I previously had only the read and write external storage permissions and this worked for older versions, but once I tried it on an android 11 device i...
I added the manage_external_storage to my androidmainifest.xml file and to my java class where the permission part is yet it is not working for my android 11 device. I previously had only the read and write external storage permissions and this worked for older versions, but once I tried it on an android 11 device it c...
java|android|xml|android-11
1
2022-09-23T20:09:47.820Z
2,022
9
20
4
27
1
1,049
58
4
0
false
false
false
false
false
false
low
73,832,591
How can I display my logo and title on whatsapp web page
<p>I need to somehow implement this image and title for a company's whatsapp business profile.</p> <p>When you click on the whatsapp icon on the website, you´ll be redirect to the whatsapp web page.</p> <p><a href="https://servcloud.com.br/" rel="nofollow noreferrer">https://servcloud.com.br/</a></p> <p>And this is the...
I need to somehow implement this image and title for a company's whatsapp business profile. When you click on the whatsapp icon on the website, you´ll be redirect to the whatsapp web page. https://servcloud.com.br/ And this is the result: https://api.whatsapp.com/send/?phone=5511942741235&text&type=phone_number&app_abs...
android|api|whatsapp
1
2022-09-23T20:16:25.010Z
2,022
9
20
4
22
0
1,017
56
3
0
false
true
false
false
false
false
low
73,832,648
Is it required/recommended to remove Trace.beginSection endSection API from release variant?
<p>I just found that using <a href="https://developer.android.com/reference/android/os/Trace" rel="nofollow noreferrer">Trace</a>.beginSection can help troubleshoot performance issues while using systrace tool. The documentation states &quot;This tracing mechanism is independent of the method tracing mechanism offered ...
I just found that using Trace .beginSection can help troubleshoot performance issues while using systrace tool. The documentation states &quot;This tracing mechanism is independent of the method tracing mechanism offered by Debug#startMethodTracing&quot; But just like debug logs, do we need to comment/remove Trace API ...
android|performance|systrace
1
2022-09-23T20:22:46.790Z
2,022
9
20
4
25
1
601
92
3
0
false
false
false
false
false
false
low
73,832,839
How to Share PDF from Assets Folder
<p>I am developing a book application. A professional application which I later publish on play store. It would be nice if it had a share button which shares pdf to different apps. I spent hours searching for that but I couldn't found the way to share pdf that is in Assets folder. Most of them are sharing images and th...
I am developing a book application. A professional application which I later publish on play store. It would be nice if it had a share button which shares pdf to different apps. I spent hours searching for that but I couldn't found the way to share pdf that is in Assets folder. Most of them are sharing images and those...
java|android
0
2022-09-23T20:47:16.467Z
2,022
9
20
4
22
2
411
35
2
0
false
false
false
false
false
false
zero
73,832,888
Evenly spread views inside a cardview Horizontaly
<p>I need help, I have ConstraintLayout and a few child views, I also have a card view which is a child view of the ConstraintLayout, I need to spread it evenly 3 views on the card view using only one ConstraintLayout to keep the flat hierarchy</p> <pre><code>&lt;androidx.constraintlayout.widget.ConstraintLayout an...
I need help, I have ConstraintLayout and a few child views, I also have a card view which is a child view of the ConstraintLayout, I need to spread it evenly 3 views on the card view using only one ConstraintLayout to keep the flat hierarchy [CODE] I have tried chain styles but no winning. Is it possible to achieve wha...
android|android-layout|android-constraintlayout
0
2022-09-23T20:53:50.540Z
2,022
9
20
4
31
1
372
49
3
1
true
false
false
false
false
false
zero
73,833,046
Google Play Console _You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter
<p>when I load the bundle app on google play console, I get this error:</p> <p><em><strong>You uploaded an APK or Android App Bundle which has an activity, activity alias, service, or broadcast receiver with intent filter, but without the 'android: exported' property set. This file can't be installed on Android 12 or h...
when I load the bundle app on google play console, I get this error: You uploaded an APK or Android App Bundle which has an activity, activity alias, service, or broadcast receiver with intent filter, but without the 'android: exported' property set. This file can't be installed on Android 12 or higher. See developer.a...
android|flutter|google-play|google-play-console
1
2022-09-23T21:15:51.787Z
2,022
9
21
4
35
2
619
150
4
1
true
false
false
false
false
false
low
73,833,073
How access a void functions another file in flutter
<p>I am working with API keys and I need to be able to access the same unique API from two different screens. Basically, I need the dataKey variable in both screens, and I get the dataKey variable from the getKey() function, which has a get method that fetches the key. Right now the getKey() function is in one of the f...
I am working with API keys and I need to be able to access the same unique API from two different screens. Basically, I need the dataKey variable in both screens, and I get the dataKey variable from the getKey() function, which has a get method that fetches the key. Right now the getKey() function is in one of the file...
flutter|android-studio|dart
0
2022-09-23T21:18:50.183Z
2,022
9
21
4
22
2
412
51
3
0
false
false
false
false
false
false
zero
73,833,254
How to unit test sendAccessibilityEvent(...) on Android?
<p>I'm trying to send <code>sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED)</code> to a view, and it's working fine when I have talkback enabled on my device, but I need to write a unit test for that line.</p> <p>I have tried with <code>view.isAccessibilityFocused</code> but this property is always false, ...
I'm trying to send sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED) to a view, and it's working fine when I have talkback enabled on my device, but I need to write a unit test for that line. I have tried with view.isAccessibilityFocused but this property is always false, I suspect because I don't have any a...
android|unit-testing|accessibility
1
2022-09-23T21:44:07.277Z
2,022
9
21
4
21
0
385
56
3
0
false
true
false
false
false
false
low
73,833,450
How to set the same width and height for a @Composable component in jetpack compose
<p>I have this component:</p> <pre><code>@Composable fun CardHome(clickable:()-&gt;Unit,text:String,image: Any?){ Card( modifier = Modifier .fillMaxWidth() .padding(15.dp) .clickable { clickable() }, elevation = 10.dp ) { Column( modifier ...
I have this component: [CODE] But the sizes don't stay the same !! I want all cards of same width and height!!
android-jetpack-compose
0
2022-09-23T22:14:27.517Z
2,022
9
22
4
27
2
110
83
1
1
true
false
false
false
false
false
zero
73,833,524
Expandable FAB in LinearLayout
<p>I want to create an expandable FAB with 2 option. I want them to appear one after the other in the right corner. I tried everything, but I am not familiar with this layouts. Below I post what the xml now looks like. As you can see, there is only one FAB appear, but I want to look like this: <a href="https://i.stack....
I want to create an expandable FAB with 2 option. I want them to appear one after the other in the right corner. I tried everything, but I am not familiar with this layouts. Below I post what the xml now looks like. As you can see, there is only one FAB appear, but I want to look like this: The fragment's xml: [CODE]
java|android|xml|floating-action-button
0
2022-09-23T22:26:41.673Z
2,022
9
22
4
22
0
318
30
4
1
true
true
false
false
false
false
zero
73,833,597
Gitlab CI/CD my pipeline faild, I cant downlaod source to build my APK
<pre><code>image: openjdk:8-jdk variables: ANDROID_COMPILE_SDK: &quot;28&quot; ANDROID_BUILD_TOOLS: &quot;28.0.2&quot; release: &quot;android&quot; release_notes: &quot;orange-apk-release&quot; notify: false # install the android sdk before_script: - apt-get --quiet update --yes - apt-get --quiet instal...
[CODE] ERROR MSG : echo y | android-sdk-linux/cmdline-tools/latest/bin/sdkmanager &quot;platforms;android-${ANDROID_COMPILE_SDK}&quot; >/dev/null 199 Warning: Failed to download any source lists please guys any help and thanks in advance.
android|gitlab|continuous-integration|cd
0
2022-09-23T22:42:59.570Z
2,022
9
22
4
26
0
238
70
4
1
true
true
false
false
false
false
zero
73,833,729
Is it possible to create a mesh network using Wi-Fi ad-hoc mode on mobile phones to circumvent internet "outages"?
<p>This is inspired by recent incidents where governments block their citizens' access to the internet.</p> <p>What I am suggesting is:</p> <ul> <li>having an Android/iPhone app that can enable a mesh-network</li> <li>it would not depend on internet servers to communicate</li> <li>functionality would be something like ...
This is inspired by recent incidents where governments block their citizens' access to the internet. What I am suggesting is: having an Android/iPhone app that can enable a mesh-network it would not depend on internet servers to communicate functionality would be something like private/public chat and message boards en...
android|networking|mesh-network
-2
2022-09-23T23:11:42.497Z
2,022
9
23
4
23
0
580
114
3
0
false
true
false
false
false
true
negative
73,833,730
Android: Too much margin top in SettingsActivity custom action bar
<p>I use a custom -but very simple- action bar in all my activities that just consists on a title and a back arrow, and I'm not being able to prevent an unwanted extra top margin currently shown (I have to mention that I'm facing this issue only in SettingsActivity.</p> <p>SettingsActivity:</p> <pre><code>class Setting...
I use a custom -but very simple- action bar in all my activities that just consists on a title and a back arrow, and I'm not being able to prevent an unwanted extra top margin currently shown (I have to mention that I'm facing this issue only in SettingsActivity. SettingsActivity: [CODE] setActionBar: [CODE] Manifest: ...
android|kotlin|android-actionbar|margin
0
2022-09-23T23:11:51.567Z
2,022
9
23
4
33
0
561
66
4
5
true
true
false
false
false
false
zero
73,833,894
"Do we have to use Samsung Application or can we use Google Application on Android"?
<p>I recently uploaded Coursera to my Android and now my phone loads Youtube videos slow and continues searching in the middle of videos'.</p> <p>Uninstalled Coursera. Unable to uninstall [Samsung] and replace my [Google]. How can I fix this?</p> <pre><code>Intent intent= new Intent(Intent.ACTION_DELET); intent.SetDATE...
I recently uploaded Coursera to my Android and now my phone loads Youtube videos slow and continues searching in the middle of videos'. Uninstalled Coursera. Unable to uninstall [Samsung] and replace my [Google]. How can I fix this? [CODE]
android|google-apps-script|installation|dns|uninstallation
-1
2022-09-23T23:58:07.713Z
2,022
9
23
4
30
0
239
84
5
1
true
true
false
false
false
true
negative
73,834,009
How to add querey parameter only if there's a value in second request in Retrofit or OkHttpClient interceptor
<p>In this app, I used <a href="https://developers.google.com/blogger/docs/3.0/getting_started" rel="nofollow noreferrer">Blogger API</a>, I have this method that gets posts</p> <pre><code>@GET suspend fun getPostList(@Url URL: String): Response&lt;PostList&gt; </code></pre> <p>this is the base URL that I used with it<...
In this app, I used Blogger API , I have this method that gets posts [CODE] this is the base URL that I used with it [CODE] when at first request it become like this [CODE] when the second request it should be getting a token parameter pageToken=ABCDE in result that I needed to do pagination, so I edit the BASE URL in ...
android|kotlin|retrofit|retrofit2|okhttp
1
2022-09-24T00:32:30.783Z
2,022
9
0
5
33
1
881
109
5
10
true
false
false
false
false
false
low
73,834,035
Sony XQ-AU52/pdx201 Can't `fastboot -w flashall` - checking 'product' FAILED
<p>Probably a noobish question, but despite following the official build guide [1] and later finding out it's broken [2] I still can't flashall:</p> <p>Code:</p> <pre><code>(lunch output cut) ============================================ PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=13 TARGET_PRODUCT=aosp_xqau52 TARGET...
Probably a noobish question, but despite following the official build guide [1] and later finding out it's broken [2] I still can't flashall: Code: [CODE] [1] https://developer.sony.com/develop/...uctions/build-aosp-android-13#tutorial-step-8 [2] https://github.com/sonyxperiadev/bug_tracker/issues/608
android|android-source|sony|fastboot
0
2022-09-24T00:39:16.413Z
2,022
9
0
5
15
0
302
76
4
1
true
true
false
false
false
false
zero
73,834,045
OutOfRangeException in Xamarin.Android.Tasks.GeneratePackageManagerJava
<p>I have a VS 2022 Windows Xamarin Forms application that has been working successfully on Android and UWP. I have started working with a cloud Mac service to build an iOS version. I have tweaked a couple of things the way you do when you are trying to get something new to work, but I don't know what I might have done...
I have a VS 2022 Windows Xamarin Forms application that has been working successfully on Android and UWP. I have started working with a cloud Mac service to build an iOS version. I have tweaked a couple of things the way you do when you are trying to get something new to work, but I don't know what I might have done to...
android|forms|xamarin
0
2022-09-24T00:43:36.920Z
2,022
9
0
5
35
0
641
71
3
2
true
true
false
false
false
false
zero
73,834,177
How to implement copy/past in mvp?
<p>I tried to implement a simple File Manager based on MVP pattern that support renaming,deleting or copying selected files. I am struggling to implement copy/past feature in the right way. Here is the UI: <a href="https://i.stack.imgur.com/hVtxI.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/hVtxI....
I tried to implement a simple File Manager based on MVP pattern that support renaming,deleting or copying selected files. I am struggling to implement copy/past feature in the right way. Here is the UI: what's the best approach to do that under MVP pattern?
android|design-patterns|android-recyclerview|mvp
0
2022-09-24T01:25:52.913Z
2,022
9
1
5
29
0
257
34
4
0
false
true
false
false
false
false
zero
73,834,266
How to download audiobook sample on amazon on android
<p>I need to manually download the sample audiobook from amazon. When you access the page you have the link to listen, see: <a href="https://rads.stackoverflow.com/amzn/click/com/B09R5ZPY6Y" rel="nofollow noreferrer" rel="nofollow noreferrer">https://www.amazon.com/Audible-Fairy-Tale/dp/B09R5ZPY6Y?crid=3JIP16IBHHH4N&am...
I need to manually download the sample audiobook from amazon. When you access the page you have the link to listen, see: https://www.amazon.com/Audible-Fairy-Tale/dp/B09R5ZPY6Y?crid=3JIP16IBHHH4N&keywords=audiobooks&qid=1663978767&rnid=2941120011&s=audible&sprefix=audioboo,aps,292&sr=1-&linkCode=sl1&tag=audiobookch03-2...
android|google-chrome-devtools
0
2022-09-24T01:54:35.317Z
2,022
9
1
5
11
0
627
53
2
0
false
true
false
false
false
false
zero
73,834,384
Android Studio Dolphin Gradle sync error - java.util.List org.jetbrains.kotlin.idea.roots.ProjectRootUtilsKt.findAll
<p>Below is the Gradle error I am getting with the Dolphin upgrade. Any help appreciated.</p> <pre><code> Android Studio Dolphin | 2021.3.1 Build #AI-213.7172.25.2113.9014738, built on September 1, 2022 Runtime version: 11.0.13+0-b1751.21-8125866 aarch64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 12.6 GC: G...
Below is the Gradle error I am getting with the Dolphin upgrade. Any help appreciated. [CODE]
android-studio|gradle|android-gradle-plugin|intellij-plugin
0
2022-09-24T02:34:30.677Z
2,022
9
2
5
22
0
93
116
4
1
true
true
false
false
false
false
zero
73,834,411
I am getting an error when I am trying to query a document from cloud firestore
<p>The app fails once it reaches the query instantiation where</p> <blockquote> <p><code> Query query = FirebaseFirestore.getInstance() .collection(&quot;Events&quot;) .orderBy(&quot;data&quot;);</code></p> </blockquote> <p>, because I get the error of:</p> <blockquote> <p>Inconvertible types; cannot cast 'java.util.Li...
The app fails once it reaches the query instantiation where Query query = FirebaseFirestore.getInstance() .collection(&quot;Events&quot;) .orderBy(&quot;data&quot;); , because I get the error of: Inconvertible types; cannot cast 'java.util.List<java.lang.String>' to 'java.util.Collections.SingletonList' I don't know ho...
java|android|google-cloud-firestore
0
2022-09-24T02:42:57.187Z
2,022
9
2
5
20
0
534
79
3
1
true
true
false
false
false
false
zero
73,834,549
How do I install Android Game Development Kit?
<p><strong>Hi! I have downloaded the Android Game Development Kit (AGDK) from the below link :</strong></p> <p><strong><a href="https://developer.android.com/games/agdk/download" rel="nofollow noreferrer">https://developer.android.com/games/agdk/download</a></strong></p> <p><strong>But I cannot understand how do I inst...
Hi! I have downloaded the Android Game Development Kit (AGDK) from the below link : https://developer.android.com/games/agdk/download But I cannot understand how do I install it? or where do I install it? There is no documentation on the web. Please Help!
android|game-development
-2
2022-09-24T03:25:44.847Z
2,022
9
3
5
14
0
255
46
2
0
false
true
false
false
false
true
negative
73,834,624
How to remove space between buttons?
<p>I have two buttons in LinearLayout, here is the declarative code in XML:</p> <pre><code>&lt;LinearLayout android:id=&quot;@+id/ButtonsStatusGtyCtm&quot; android:layout_width=&quot;250dp&quot; android:layout_height=&quot;wrap_content&quot; android:layout_marginTop=&quot;10dp&quot; app:layout_const...
I have two buttons in LinearLayout, here is the declarative code in XML: [CODE] And here is the screenshot: As you can see there is space in the image between two buttons. My question is how can I decrease the space between two buttons?
android|kotlin|mobile|view|viewgroup
-1
2022-09-24T03:55:04.163Z
2,022
9
3
5
35
0
236
36
5
1
true
true
false
false
false
true
negative
73,834,732
How Can I record a short video in an Android app?
<p>I am developing an application where I press a button and it will record a 10 second video and store it in internal storage. How can I do that?</p>
I am developing an application where I press a button and it will record a 10 second video and store it in internal storage. How can I do that?
android|android-camera|video-capture
1
2022-09-24T04:28:45.043Z
2,022
9
4
5
34
1
143
49
3
0
false
false
false
false
false
false
low
73,834,747
How to fetch Shopify Subscription in Native Mobile Apps?
<p>I have created a store on Shopify and added one subscription app from Shopify AppStore. I can see my subscriptions in my demo app on the website provided by Shopify. I am building this store on Shopify so that I could access this subscription on my iOS and Android native apps. I tried reading the document and going ...
I have created a store on Shopify and added one subscription app from Shopify AppStore. I can see my subscriptions in my demo app on the website provided by Shopify. I am building this store on Shopify so that I could access this subscription on my iOS and Android native apps. I tried reading the document and going thr...
android|ios|shopify|shopify-api|shopify-mobile-buy-sdk
0
2022-09-24T04:32:31.397Z
2,022
9
4
5
13
0
716
56
5
0
false
true
false
false
false
false
zero
73,834,751
How to use image moderation API in Android project with Firebase
<p>Beginner here, O tried to find a tutorial on how to apply image moderation API on my Android project. Is there any tutorial or person who can help me to use the image moderation API in Android with Firebase as a database?</p>
Beginner here, O tried to find a tutorial on how to apply image moderation API on my Android project. Is there any tutorial or person who can help me to use the image moderation API in Android with Firebase as a database?
java|android
-1
2022-09-24T04:33:02.050Z
2,022
9
4
5
15
0
221
64
2
0
false
true
false
false
false
true
negative
73,834,807
How can i name Android app with using words like Facebook , Instagram
<p>I built a Instagram image downloader app i named my app name with video downloader for instagram.but playstore deletes my app because &quot;Instagram&quot; name is used. How to use word &quot;Instagram &quot; without app deleted.</p>
I built a Instagram image downloader app i named my app name with video downloader for instagram.but playstore deletes my app because &quot;Instagram&quot; name is used. How to use word &quot;Instagram &quot; without app deleted.
android
0
2022-09-24T04:50:39.820Z
2,022
9
4
5
14
0
229
69
1
0
false
true
false
false
false
false
zero
73,834,838
Why doesn't the called API data appear in the native picker?
<blockquote> <p>Why doesn't the called API data appear in the native picker? , Previously there was an <code>ActivityIndicator</code> and it was only loading, then I deleted the <code>ActivityIndicator</code> but the API data didn't appear, but the console.log data was called, why?</p> </blockquote> <pre><code>const [d...
Why doesn't the called API data appear in the native picker? , Previously there was an ActivityIndicator and it was only loading, then I deleted the ActivityIndicator but the API data didn't appear, but the console.log data was called, why? [CODE]
android|react-native|picker
0
2022-09-24T05:00:00.963Z
2,022
9
5
5
17
0
247
60
3
1
true
true
false
false
false
false
zero
73,834,840
how to implement barcode listener on handheld MB_A version mobile terminal on flutter
<p>I used honeywell_scanner to scan barcode on mobile terminal and it works on Honeywell mobile terminal, but I want to use this app for &quot;handheld MB_A&quot; mobile terminal device to scan and read barcode. I tried other packages: zkc_scanner, flutter_barcode_listener, zebra_scanner_plugin, blue_bird_scanner. But ...
I used honeywell_scanner to scan barcode on mobile terminal and it works on Honeywell mobile terminal, but I want to use this app for &quot;handheld MB_A&quot; mobile terminal device to scan and read barcode. I tried other packages: zkc_scanner, flutter_barcode_listener, zebra_scanner_plugin, blue_bird_scanner. But tha...
android|flutter|qr-code|barcode|handhelddevice
0
2022-09-24T05:00:14.977Z
2,022
9
5
5
11
0
418
85
5
0
false
true
false
false
false
false
zero
73,834,860
Real time distance estimation from camera to object
<p>I have to make an application in which I want to estimate the distance between from my camera to an object. I want a code related to this task.</p>
I have to make an application in which I want to estimate the distance between from my camera to an object. I want a code related to this task.
java|android-studio
-2
2022-09-24T05:06:25.987Z
2,022
9
5
5
10
0
143
51
2
0
false
true
false
false
false
true
negative
73,834,861
Is it possible to implement self correcting paint or line in drawpath?
<p>What I'm implying is when I draw circle with shaky lines, It will recognize that as circle and automatically correct it.</p>
What I'm implying is when I draw circle with shaky lines, It will recognize that as circle and automatically correct it.
java|android
-2
2022-09-24T05:06:33.470Z
2,022
9
5
5
25
0
120
70
2
0
false
true
false
false
false
true
negative
73,834,891
What is the simple way to query a collection in Firestore and listen for changes in real time?
<p>The documentation is frustratingly confusing. I only want to know how to query and return the results, but the docs show a return of a ListView. It is very confusing for beginners if you pack multiple things into 1 point. Why do you need the ListView here? What if I don't plan on using a ListView in my app?</p> <p><...
The documentation is frustratingly confusing. I only want to know how to query and return the results, but the docs show a return of a ListView. It is very confusing for beginners if you pack multiple things into 1 point. Why do you need the ListView here? What if I don't plan on using a ListView in my app? Documentati...
android|flutter|firebase|google-cloud-firestore|listener
-1
2022-09-24T05:16:47.603Z
2,022
9
5
5
28
0
330
94
5
1
true
true
false
false
false
true
negative
73,834,895
Connect VPN without open permission dialog in android..?
<p>Is it possible to connect to a VPN without opening the VPN permission dialog on Android?</p> <p>Language: Java / Android</p> <p><a href="https://i.stack.imgur.com/vxOwg.png" rel="nofollow noreferrer">Click here for an example</a></p>
Is it possible to connect to a VPN without opening the VPN permission dialog on Android? Language: Java / Android Click here for an example
java|android|vpn
-2
2022-09-24T05:18:07.850Z
2,022
9
5
5
20
0
139
56
3
0
false
true
false
false
false
true
negative
73,834,905
Flutter StreamBuilder widget Error : type ' () => Map<String, dynamic >' is not a subtype of type 'DocumentSnapshot<Object?>' in type cast
<p>Error : type ' () =&gt; Map&lt;String, dynamic &gt;' is not a subtype of type 'DocumentSnapshot&lt;Object?&gt;' in type cast.</p> <p>Below is the code sample of my chat screen which is one of the major component of my chat appllication where I wanted to build a stream of messages using the firebase but this gives ...
Error : type ' () => Map<String, dynamic >' is not a subtype of type 'DocumentSnapshot<Object?>' in type cast. Below is the code sample of my chat screen which is one of the major component of my chat appllication where I wanted to build a stream of messages using the firebase but this gives an error app works complete...
android|flutter|firebase|android-studio|flutter-test
0
2022-09-24T05:20:30.260Z
2,022
9
5
5
15
1
482
138
5
1
true
false
false
false
false
false
zero
73,834,940
Not able to see horizontal page indicator
<p>I started learning jetpack compose and am currently stuck at the moment where I am not able to see the horizontal page indicator and not able to swipe to the next page too. Only the screen at startDestination is visible.</p> <p>I have referred this from stevdza-san youtube channel</p> <p>Here is the first screen. <a...
I started learning jetpack compose and am currently stuck at the moment where I am not able to see the horizontal page indicator and not able to swipe to the next page too. Only the screen at startDestination is visible. I have referred this from stevdza-san youtube channel Here is the first screen. Onboard Screen [COD...
android|kotlin|android-jetpack-compose|android-jetpack|android-jetpack-navigation
1
2022-09-24T05:31:31.887Z
2,022
9
5
5
31
0
341
41
5
2
true
true
false
false
false
false
low
73,834,962
Attempt to invoke virtual method 'android.os.Parcelable android.os.Bundle.getParcelable(java.lang.String)' on a null object reference
<p>Idk why is it not working, Im trying to transfer data, i'm doing an app but when i run it i get an error, the Error is in the BlogActivity Class &quot;showData(getIntent().getExtras().getParcelable(EXTRAS_BLOG));&quot;(java.lang.NullPointerException).</p> <p>This is BlogActivity Class:</p> <pre><code>public class Bl...
Idk why is it not working, Im trying to transfer data, i'm doing an app but when i run it i get an error, the Error is in the BlogActivity Class &quot;showData(getIntent().getExtras().getParcelable(EXTRAS_BLOG));&quot;(java.lang.NullPointerException). This is BlogActivity Class: [CODE] Blog Class: [CODE] This is Main A...
java|android|android-studio
0
2022-09-24T05:38:36.863Z
2,022
9
5
5
16
1
375
133
3
4
true
false
false
false
false
false
zero
73,835,026
Firebase test notification is receiving when it is in test mode but when i click review it is not working
<p>I have added shaA-1 key and sha-256 key also and also have all the dependency test mode is working fine.In the test mode app is on background and without background is working fine.</p> <pre><code> public class MainActivity extends AppCompatActivity { EditText etToken; @SuppressLint(&quot;MissingInflatedId...
I have added shaA-1 key and sha-256 key also and also have all the dependency test mode is working fine.In the test mode app is on background and without background is working fine. [CODE] Here is the manifest [CODE] what should I change in this code.In the test mode app is on background and without background is worki...
android|firebase|push-notification
0
2022-09-24T05:54:29.250Z
2,022
9
5
5
6
0
328
105
3
2
true
true
false
false
false
false
zero
73,835,182
How to store user click and gestures (using accessibility ) ,in a file?
<p>I want to make a android application with accessibility service in which it records user click and gestures using accessibility service and then it will store the data in a file and then it will access the file a repeat the click and gestures when needed. kindly help me how can I achieve this .</p> <p>(I am new to t...
I want to make a android application with accessibility service in which it records user click and gestures using accessibility service and then it will store the data in a file and then it will access the file a repeat the click and gestures when needed. kindly help me how can I achieve this . (I am new to this so kin...
java|android|accessibilityservice
0
2022-09-24T06:29:41.693Z
2,022
9
6
5
17
0
365
71
3
0
false
true
false
false
false
false
zero
73,835,270
Problem parsing release apk file created with cordova on android phone
<p>I am creating an app with Cordova (version 11). Everything works when I run it on an emulator or launch it on my device. However, when I create the release version, the APK file won't install on my device. It says, &quot;There was a problem parsing the package.&quot;</p> <p>Here is my AndroidManifest.xml file:</p> <...
I am creating an app with Cordova (version 11). Everything works when I run it on an emulator or launch it on my device. However, when I create the release version, the APK file won't install on my device. It says, &quot;There was a problem parsing the package.&quot; Here is my AndroidManifest.xml file: [CODE] I am not...
android|cordova|parsing|package
0
2022-09-24T06:52:14.723Z
2,022
9
6
5
11
0
441
70
4
1
true
true
false
false
false
false
zero
73,835,286
How to access dynamic input fields values on button click in flutter
<p>I am working on an attendance application where I assign wages to the workers. I want to store all the wages given to the workers into the database. But the problem is I want to access all the given values on button click. I have no idea how it can be done in flutter. I am a beginner.</p> <p>I have given all the cod...
I am working on an attendance application where I assign wages to the workers. I want to store all the wages given to the workers into the database. But the problem is I want to access all the given values on button click. I have no idea how it can be done in flutter. I am a beginner. I have given all the codes and the...
android|ios|flutter|dart
-1
2022-09-24T06:55:22.893Z
2,022
9
6
5
19
1
425
68
4
2
true
false
false
false
false
true
negative
73,835,297
Unhandled Exception: PlatformException(NativeAdError, Can't find NativeAdFactory with id: listTile, null, null)
<p>[VERBOSE-2:ui_dart_state.cc(209)] Unhandled Exception: PlatformException(NativeAdError, Can't find NativeAdFactory with id: listTile, null, null)</p> <p>#0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:607:7) #1 MethodChannel._invokeMethod (package:flutter/src/service...
[VERBOSE-2:ui_dart_state.cc(209)] Unhandled Exception: PlatformException(NativeAdError, Can't find NativeAdFactory with id: listTile, null, null) #0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:607:7) #1 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.d...
flutter|android-studio|dart|admob|flutter-ios
0
2022-09-24T06:57:48.847Z
2,022
9
6
5
6
0
405
111
5
0
false
true
false
false
false
false
zero
73,835,312
Problem ending programmatically an activity right after setting SharedPreferences
<p>The problem I have now seems so basic that someone else must have faced it before me.</p> <p>Here is the code, it just saves some preferences to be used later on:</p> <pre><code>val editor: SharedPreferences.Editor = sharedPreferences!!.edit() editor.putString(&quot;activeFolder&quot;, &quot;FavoriteFolder&quot;) ed...
The problem I have now seems so basic that someone else must have faced it before me. Here is the code, it just saves some preferences to be used later on: [CODE] Before that sharedPreferences is declared at the class level like this: [CODE] An it is initialized inside onCreate() : [CODE] After the code is executed I q...
android|kotlin|sharedpreferences
-1
2022-09-24T07:00:25.713Z
2,022
9
7
5
47
2
852
81
3
3
true
false
false
false
false
true
negative
73,835,425
java.lang.ClassNotFoundException on frida
<p>I am trying to hook function of android messaging application.<br /> I run frida hook script. then I get a following error:</p> <p><code>Error: java.lang.ClassNotFoundException: Didn't find class &quot;i0.a.a.a.e3.z&quot; on path: DexPathList[[/data/app/xxxxx==/base.apk]]</code></p> <p>In Jadx-Gui, base.apk is decom...
I am trying to hook function of android messaging application. I run frida hook script. then I get a following error: Error: java.lang.ClassNotFoundException: Didn't find class &quot;i0.a.a.a.e3.z&quot; on path: DexPathList[[/data/app/xxxxx==/base.apk]] In Jadx-Gui, base.apk is decompiled as follows [CODE] script is as...
android|reverse-engineering|frida
0
2022-09-24T07:20:59.850Z
2,022
9
7
5
23
0
363
41
3
2
true
true
false
false
false
false
zero
73,835,439
Error: ADB exited with exit code 1 Performing Streamed Install adb: failed to install ...\app.apk : Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
<pre><code>Error: ADB exited with exit code 1 Performing Streamed Install adb: failed to install C:\Users\Troy\StudioProjects\Test_app\build\app\outputs\flutter-apk\app.apk: Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE] Error launching application on sdk gphone64 x86 64. </code></pre>
[CODE]
android|apk|adb
0
2022-09-24T07:23:54.100Z
2,022
9
7
5
16
0
6
145
3
1
true
true
false
false
false
false
zero
73,835,483
How to read otp number from the notification panel in the android by appium automation testing
<p>{</p> <pre><code> ((AndroidDriver) driver).openNotifications(); </code></pre> <p>click(expandNotificationPanel); AndroidElement otpElement=(AndroidElement)driver.findElementByXPath(&quot;//[contains(@text,&quot;Verification code:&quot;)]&quot;); String OTPmessage = otpElement.getText(); String OTP = OTPmessag...
{ [CODE] click(expandNotificationPanel); AndroidElement otpElement=(AndroidElement)driver.findElementByXPath(&quot;//[contains(@text,&quot;Verification code:&quot;)]&quot;); String OTPmessage = otpElement.getText(); String OTP = OTPmessage.substring(OTPmessage.lastIndexOf(&quot;:&quot;)+1); ((AndroidDriver) driver).pre...
android|selenium|automation|appium|one-time-password
-1
2022-09-24T07:32:32.193Z
2,022
9
7
5
18
0
359
94
5
1
true
true
false
false
false
true
negative
73,835,511
Android: Animating SCALE_X and SCALE_Y on TextView looks choppy and not smooth
<p>When animating small deltas for SCALE_X and SCALE_Y on TextViews, the results are choppy and don't look smooth.</p> <p>To illustrate this problem, I have coded up a sample project here: <a href="https://github.com/blah1234/TextScaleApplication" rel="nofollow noreferrer">https://github.com/blah1234/TextScaleApplicati...
When animating small deltas for SCALE_X and SCALE_Y on TextViews, the results are choppy and don't look smooth. To illustrate this problem, I have coded up a sample project here: https://github.com/blah1234/TextScaleApplication Sample result looks like the screen record video here: example.mp4 (may need to download the...
android|textview|objectanimator|animator
0
2022-09-24T07:37:55.153Z
2,022
9
7
5
10
0
1,075
78
4
0
false
true
false
false
false
false
zero
73,835,528
Insert DB version into Sqlite like 1.0.1
<p>I need to save the DB version into Sqlite like <strong>1.0.1</strong>. The DB version will update from time to time. <strong>How could I insert DB version like 1.0.1 instead of an integer number?</strong></p> <pre><code>await openDatabase(path, version: _version, onCreate: _onCreate); </code></pre> <p>Here I could s...
I need to save the DB version into Sqlite like 1.0.1 . The DB version will update from time to time. How could I insert DB version like 1.0.1 instead of an integer number? [CODE] Here I could see the version will be a nullable integer(int? version). How could I save something like 1.0.1 instead of an integer? Need help...
android|ios|flutter|dart
0
2022-09-24T07:40:55.963Z
2,022
9
7
5
13
0
337
40
4
1
true
true
false
false
false
false
zero
73,835,584
Unable to use keytool because it shows More?
<p>I have build the apk and I want to use keytool then:</p> <p>So in the command prompt I copied:</p> <pre><code>keytool -list -v -keystore ./keystore.jks -alias upload -storepass mypass -keypass mypass </code></pre> <p>But each time I get this message:</p> <pre><code>More? </code></pre> <p>Here is the image:</p> <p><a...
I have build the apk and I want to use keytool then: So in the command prompt I copied: [CODE] But each time I get this message: [CODE] Here is the image: How can I fix this and run this command?
android|android-studio|keytool
0
2022-09-24T07:50:55.657Z
2,022
9
7
5
14
0
195
44
3
2
true
true
false
false
false
false
zero
73,835,653
The use of Java options environment variables detected. How to delete it?
<p>When I turned Android Studio on Windows, I got this warning:</p> <blockquote> <p>The use of Java options environment variables detected. Such variables override IDE configuration files (*.vmoptions) and may cause performance and stability issues. Please consider deleting these variables: JAVA_TOOL_OPTIONS.</p> </blo...
When I turned Android Studio on Windows, I got this warning: The use of Java options environment variables detected. Such variables override IDE configuration files (*.vmoptions) and may cause performance and stability issues. Please consider deleting these variables: JAVA_TOOL_OPTIONS. So, I want to delete this variab...
java|android-studio|environment-variables
0
2022-09-24T08:04:27.010Z
2,022
9
8
5
42
0
560
73
3
0
false
true
false
false
false
false
zero
73,835,678
How to change preview color of the drawable icons in Android Studio depending on theme color?
<p>All vector icons in Android are white by default (generated by Google Fonts or Vector Assets), but have a tint set to <code>?attr/colorControlNormal</code>. When we look at asset previews, Android Studio doesn't render this tint, it just uses the base color. In the Dark theme it looks fine, but I'm using a Light the...
All vector icons in Android are white by default (generated by Google Fonts or Vector Assets), but have a tint set to ?attr/colorControlNormal . When we look at asset previews, Android Studio doesn't render this tint, it just uses the base color. In the Dark theme it looks fine, but I'm using a Light theme and the icon...
android-studio|android-drawable|android-resources
0
2022-09-24T08:09:17.493Z
2,022
9
8
5
10
0
495
93
3
0
false
true
false
false
false
false
zero
73,835,705
Alarm manager or sound notification are not working in release mode Android 13
<p>I've built an application that may notify a user after some period in time. By &quot;notify&quot; I mean to play a sound using <code>flutter_ringtone_player</code> plugin. The <code>android_alarm_manager_plus</code> is used to schedule a notification.</p> <p>The problem is that it has stopped to work (to make a soun...
I've built an application that may notify a user after some period in time. By &quot;notify&quot; I mean to play a sound using flutter_ringtone_player plugin. The android_alarm_manager_plus is used to schedule a notification. The problem is that it has stopped to work (to make a sound) after some moment in time. I supp...
android|flutter|android-alarms|ringtone
-1
2022-09-24T08:15:11.847Z
2,022
9
8
5
17
0
1,369
78
4
3
true
true
false
false
false
true
negative
73,835,710
Activity Recognition Transition stops sending transitions to my app
<p>When I register to receive Activity Recognition Transition, it is working properly, then I send the app to the background and it's still working properly, I keep the app alive using a foreground service, for other purposes,... after about 36 hours OS stops sending activity recognition transitions to my app, even if ...
When I register to receive Activity Recognition Transition, it is working properly, then I send the app to the background and it's still working properly, I keep the app alive using a foreground service, for other purposes,... after about 36 hours OS stops sending activity recognition transitions to my app, even if I o...
android|android-transitions|activity-recognition
-1
2022-09-24T08:15:53.703Z
2,022
9
8
5
7
0
525
67
3
0
false
true
false
false
false
true
negative
73,835,735
bitmap is not being compress that can be share on whats app
<p>I am capturing an image using camerax API image is being captured successfully and then I convert it to bitmap using below method</p> <pre><code>fun Image.toBitmap(): Bitmap { val buffer = planes[0].buffer buffer.rewind() val bytes = ByteArray(buffer.capacity()) buffer.get(bytes) return BitmapFac...
I am capturing an image using camerax API image is being captured successfully and then I convert it to bitmap using below method [CODE] this method works perfectly and I succeed to setBitMapImage to image view the issue is that I want to share this captured bitmap image on what's app view intent without saving in stor...
android|android-intent|bitmap|android-bitmap|android-camera2
-1
2022-09-24T08:19:29.250Z
2,022
9
8
5
26
1
493
59
5
2
true
false
false
false
false
true
negative
73,835,780
Is there a way to skip init method in viewmodel?
<p>Is there a way to <strong>not</strong> execute the init method when calling the viewmodel into the fragment?</p> <p>This is how my fragment looks:</p> <pre><code>@AndroidEntryPoint class WelcomeFragment : BaseFragment(R.layout.fragment_welcome) { //Here I call the viewmodel private val notificationViewModel...
Is there a way to not execute the init method when calling the viewmodel into the fragment? This is how my fragment looks: [CODE] This is the viewmodel: [CODE] EDIT: Sorry I didn't give the whole context before. I call that viewmodel from another fragment too, and that fragment does need the code inside init to execute...
android|kotlin|fragment|viewmodel
-1
2022-09-24T08:28:28.053Z
2,022
9
8
5
28
2
466
48
4
2
true
false
false
false
false
true
negative
73,835,814
How do you print the text to the next activity in Android Studio
<p>This is on my main activity, after clicking the button it should show the message in the edit text view to the second activity. But for some reason it doesnt show the message I typed in the text view after hitting the button.</p> <pre><code>public class MainActivity extends AppCompatActivity { EditText edtxt; ...
This is on my main activity, after clicking the button it should show the message in the edit text view to the second activity. But for some reason it doesnt show the message I typed in the text view after hitting the button. [CODE]
android|android-studio
-1
2022-09-24T08:34:37.760Z
2,022
9
8
5
15
0
232
64
2
1
true
true
false
false
false
true
negative
73,835,819
startActivityForResult is deprecated
<p>I have this blocks of codes from the a class, which is extended by ActivityX. I have two startActivityForResult need to be fixed and I dont know how to implement the new API.</p> <p><strong>This is the 1st startActivityForResult.</strong></p> <pre><code> private void launchIntentToAddPackToSpecificPackage(String ...
I have this blocks of codes from the a class, which is extended by ActivityX. I have two startActivityForResult need to be fixed and I dont know how to implement the new API. This is the 1st startActivityForResult. [CODE] This is the 2nd startActivityForResult. [CODE] This is the OnActivityResult. [CODE]
java|android|android-studio|android-12
0
2022-09-24T08:35:33.653Z
2,022
9
8
5
26
0
305
36
4
3
true
true
false
false
false
false
zero
73,835,869
Android Studio phone emulator on Mac OS won't power on
<p>My Mac OS version is Monterey 12.5.1.</p> <p>The Android Studio version is Dolphin 2021.3.1.</p> <p>When I start the emulator in the Visual Device Manager of Android Studio and press the power button of the emulator, However, only a gray screen like the attached image will appear, and it will not enter the normal mo...
My Mac OS version is Monterey 12.5.1. The Android Studio version is Dolphin 2021.3.1. When I start the emulator in the Visual Device Manager of Android Studio and press the power button of the emulator, However, only a gray screen like the attached image will appear, and it will not enter the normal mobile phone deskto...
android|macos|android-emulator
-1
2022-09-24T08:45:49.883Z
2,022
9
8
5
13
0
362
54
3
0
false
true
false
false
false
true
negative
73,835,882
How to convert base64 to xml svg format in React Native (react-native-signature-canvas)
<p><strong>WHAT I NEED :</strong></p> <p>I take a base64 string from react-native-canvas-signature library. However, I have to send it to api while converting svg xml format. The example format is:</p> <pre><code>&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;17.397&quot; height=&quot;17.397&quot; vie...
WHAT I NEED : I take a base64 string from react-native-canvas-signature library. However, I have to send it to api while converting svg xml format. The example format is: [CODE] this is a kind of url icon. when I draw a sign in react native app I take a base64 string and I have to convert it to this format. I research ...
android|ios|typescript|react-native|svg
-1
2022-09-24T08:48:26.197Z
2,022
9
8
5
17
0
829
87
5
2
true
true
false
false
false
true
negative
73,835,947
Android- Json object come as object or array
<p>I have this json response from the api, and the response can't be change</p> <pre><code>data class Weather ( val category: String, val id: String, val meta: Meta ) data class Meta ( val id: String, val name: String, val details: String ) </code></pre> <p>Json respose</p> <pre><code> { &quot;weathe...
I have this json response from the api, and the response can't be change [CODE] Json respose [CODE] If meta is empty, it come with an array but if not empty, it come with object. Retrofit throws [CODE] the api can't be modify so this has to be fix on client end. How can I solve this
android|json|kotlin|serialization|retrofit
0
2022-09-24T08:59:04.683Z
2,022
9
8
5
34
2
283
44
5
3
true
false
false
false
false
false
zero
73,835,957
Android Studio and SQLite : How can I populate the EditText of a Dialog from the contents of a selected GridView Item?
<ol> <li>gridView.setOnItemLongClickListener calls showDialogUpdate.</li> <li>showDialogUpdate uses setContentView to R.layout.update_activity</li> <li>Inside update_activity layout I have 3 EditText (edtName, edtUsername and edtPassword) which I want to be populated when the dialog is shown</li> </ol> <p>Thanks for th...
gridView.setOnItemLongClickListener calls showDialogUpdate. showDialogUpdate uses setContentView to R.layout.update_activity Inside update_activity layout I have 3 EditText (edtName, edtUsername and edtPassword) which I want to be populated when the dialog is shown Thanks for the help. public class FoodList extends App...
android|sqlite
0
2022-09-24T09:02:04.833Z
2,022
9
9
5
15
0
343
118
2
1
true
true
false
false
false
false
zero
73,835,978
Did not find frame
<p>I get the following error when using InAppWebview and switching between pages, works in one emulator, not in another</p> <pre><code> E/FrameEvents( 5237): updateAcquireFence: Did not find frame. </code></pre>
I get the following error when using InAppWebview and switching between pages, works in one emulator, not in another [CODE]
android|flutter|dart|visual-studio-code|android-webview
0
2022-09-24T09:05:42.163Z
2,022
9
9
5
30
0
123
18
5
1
true
true
false
false
false
false
zero
73,836,003
Viewmodel Parameter specified as non-null comes back as null
<p>when I call my viewmodel it says that my parameter comes back as null even though the api call works so im wondering is the mistake happening in my viewmodel?</p> <p>My viewmodel</p> <pre><code>class HomeFragmentVM( private val spManager: SPManager, private val repository: Repository ) : AbstractViewModel()...
when I call my viewmodel it says that my parameter comes back as null even though the api call works so im wondering is the mistake happening in my viewmodel? My viewmodel [CODE] The debug log: [CODE] The model: [CODE] The model has been a little shortened as some model as not been used yet.
android|kotlin|debugging|rx-java
0
2022-09-24T09:10:35.200Z
2,022
9
9
5
19
2
292
60
4
3
true
false
false
false
false
false
zero
73,836,090
Firestore calls the data Twice
<p>I am trying to call document and apply to recycler view, but in the recycler view, the items are double. I have checked other questions as well, but am sure its related to mine.</p> <p>Here is the code</p> <pre><code>private void loadData() { firestore.collection(&quot;Products&quot;).orderBy(&quot;order&quot;) ...
I am trying to call document and apply to recycler view, but in the recycler view, the items are double. I have checked other questions as well, but am sure its related to mine. Here is the code [CODE]
android|firebase|google-cloud-firestore|android-recyclerview
0
2022-09-24T09:25:41.647Z
2,022
9
9
5
17
0
201
30
4
1
true
true
false
false
false
false
zero
73,836,138
Android - DNS - Problem with app after changing ip server
<p>I need help. Today I had to change my server. I set new IP for record A (DNS) and now I have problem. SSL on new machine is ok (verifed by <a href="https://www.sslshopper.com/" rel="nofollow noreferrer">https://www.sslshopper.com/</a>)</p> <p>but</p> <pre><code>&quot;java.security.cert.CertPathValidatorException: Tr...
I need help. Today I had to change my server. I set new IP for record A (DNS) and now I have problem. SSL on new machine is ok (verifed by https://www.sslshopper.com/ ) but [CODE] How can I flush DNS on andorid? My app is still offline.. :( for 4 hours.. Everywhre I use: [CODE]
android|dns
-1
2022-09-24T09:32:44.493Z
2,022
9
9
5
11
0
278
57
2
2
true
true
false
false
false
true
negative
73,836,145
How to set max wait time for http response in Android Cronet?
<p>I use Android's recommended Cronet library for making HTTP requests, however, I couldn't find information on how to implement certain features. For example, I need to set max wait time for all HTTP requests. In other words, if the HTTP request takes more than 'X' seconds - it should be considered as a FAILED request...
I use Android's recommended Cronet library for making HTTP requests, however, I couldn't find information on how to implement certain features. For example, I need to set max wait time for all HTTP requests. In other words, if the HTTP request takes more than 'X' seconds - it should be considered as a FAILED request. H...
android|kotlin|http|connection-timeout|cronet
0
2022-09-24T09:33:23.047Z
2,022
9
9
5
12
1
417
61
5
2
true
false
false
false
false
false
zero
73,836,174
How do I remove this in my Flutter application?
<p>In my flutter application, I want to remove this gestures footer. I have redmi phone. I don't want this to be visible in my app. Can I do this?<a href="https://i.stack.imgur.com/ulRFV.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ulRFV.jpg" alt="enter image description here" /></a></p>
In my flutter application, I want to remove this gestures footer. I have redmi phone. I don't want this to be visible in my app. Can I do this?
android|flutter
0
2022-09-24T09:38:42.117Z
2,022
9
9
5
34
1
143
47
2
0
false
false
false
false
false
false
zero
73,836,436
TextView shadow color always white - Android Studio
<p>I wanted to add a shadow to a TextView, but on my phone the shadow color is always white, although it is supposed to be gray. In the layout validator of Android Studio it looks the way it is supposed to.</p> <p>Here is my xml code:</p> <pre><code> &lt;TextView android:id=&quot;@+id/tvName&quot; an...
I wanted to add a shadow to a TextView, but on my phone the shadow color is always white, although it is supposed to be gray. In the layout validator of Android Studio it looks the way it is supposed to. Here is my xml code: [CODE] I also tried to set the shadow effect programmatically, which also didn't work. tvName.s...
java|android|android-studio|textview|shadow
0
2022-09-24T10:18:45.357Z
2,022
9
10
5
33
0
544
51
5
1
true
true
false
false
false
false
zero
73,836,440
I am using a recycler view in the fragemen Here is the adapter
<pre><code>class NewAdapter(private val newslist: ArrayList&lt;News&gt;, private val context: Context?):RecyclerView.Adapter&lt;NewAdapter.MyviewHolder&gt;() { private lateinit var mListener:onItemClickListene interface onItemClickListene{ fun onItemClick(position: Int) } fun setOnclickListen...
[CODE] here is th the Home Fragment [CODE] am getting ArrayIndexOutOfBoundsException although I have not inserted any item in the list. Here is the error:* [CODE]
android|kotlin|android-recyclerview|fragment|adapter
-1
2022-09-24T10:19:24.323Z
2,022
9
10
5
19
0
162
62
5
3
true
true
false
false
false
true
negative
73,836,520
Problems when making webview
<p>I have developed a site, you can search and download youtube videos. In order to adapt it to mobile, I made a Webview from android studio and some problems arose as follows: 1 - The photos I took are not listed when searching <a href="https://i.stack.imgur.com/KaIw8.jpg" rel="nofollow noreferrer">enter image descrip...
I have developed a site, you can search and download youtube videos. In order to adapt it to mobile, I made a Webview from android studio and some problems arose as follows: 1 - The photos I took are not listed when searching enter image description here While this is the case on the site, what is happening in applicat...
java|android|web|webview
0
2022-09-24T10:30:55.433Z
2,022
9
10
5
27
0
1,731
28
4
1
true
true
false
false
false
false
zero
73,836,543
Why @ContributesAndroidInjector cant be found by DaggerAndroidProcessor library on the processor path?
<p>I am implementing Dagger2 and when I am using @ContributesAndroidInjector, I get compile time error:<code>@dagger.android.ContributesAndroidInjector was used,but dagger.android.processor.AndroidProcessor was not found on the processor path</code></p> <p>I tried multiple solutions but this error never goes away. I tr...
I am implementing Dagger2 and when I am using @ContributesAndroidInjector, I get compile time error: @dagger.android.ContributesAndroidInjector was used,but dagger.android.processor.AndroidProcessor was not found on the processor path I tried multiple solutions but this error never goes away. I tried using old library ...
java|android|kotlin|dependency-injection|dagger-2
0
2022-09-24T10:34:43.283Z
2,022
9
10
5
17
0
637
102
5
1
true
true
false
false
false
false
zero
73,836,569
API keys with referer restrictions cannot be used with this API. Error on Flutter Application
<p>I need google map on my flutter android application. I did everything correctly. Enabled All Google Map API, Created Credentials, restricted using SHA-1 and everything. But when I compile the code and install on device. I am getting</p> <blockquote> <p>API keys with referer restrictions cannot be used with this API....
I need google map on my flutter android application. I did everything correctly. Enabled All Google Map API, Created Credentials, restricted using SHA-1 and everything. But when I compile the code and install on device. I am getting API keys with referer restrictions cannot be used with this API. Pubspec AndroidManifes...
android|flutter|api|google-maps|google-cloud-platform
0
2022-09-24T10:39:35.697Z
2,022
9
10
5
26
0
343
93
5
0
false
true
false
false
false
false
zero
73,836,603
why I am getting 401 error while sending a post request to auth/users in android studio but same request works in browser? wrong with my request?
<p>I have an API which allows post request to register new users. <a href="https://i.stack.imgur.com/DzcPX.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/DzcPX.png" alt="enter image description here" /></a> It works in browser but when I try making this post request in my android project.I get 401 u...
I have an API which allows post request to register new users. It works in browser but when I try making this post request in my android project.I get 401 unauthorized response, I don't know what is wrong with my request!? [CODE]
android|django|post|django-rest-framework|httpurlconnection
1
2022-09-24T10:45:17.670Z
2,022
9
10
5
23
0
229
145
5
1
true
true
false
false
false
false
low
73,836,637
Delphi Android TLocationSensor
<p>Using Delphi 10.3.</p> <p>I wrote an android app of notifications based on the geolocalized position.</p> <p>I have this problem: when I send the app in the background (I verified that it remains running, even with the back button, where I specified not to close it but to send it in the background), TLocationSensor ...
Using Delphi 10.3. I wrote an android app of notifications based on the geolocalized position. I have this problem: when I send the app in the background (I verified that it remains running, even with the back button, where I specified not to close it but to send it in the background), TLocationSensor stop tracking the...
android|delphi
1
2022-09-24T10:52:07.147Z
2,022
9
10
5
44
0
671
30
2
0
false
true
false
false
false
false
low
73,836,648
Push notification arrives only when android device is unlocked. ( Angular PWA )
<p>I'm developing a ticker app where I'm using <code>FCM</code> for <code>PUSH</code> notifications, It is working fine when device is in unlocked state and PWA app is <strong>closed</strong>. But as soon as I lock my device after closing the app. I get no notification, even when I have enabled lock screen notification...
I'm developing a ticker app where I'm using FCM for PUSH notifications, It is working fine when device is in unlocked state and PWA app is closed . But as soon as I lock my device after closing the app. I get no notification, even when I have enabled lock screen notification wakeup in my OnePlus 10 pro. Let me know if ...
android|angular|push-notification|firebase-cloud-messaging|progressive-web-apps
1
2022-09-24T10:53:35.447Z
2,022
9
10
5
18
0
405
79
5
0
false
true
false
false
false
false
low
73,836,732
No sound in Android Chrome browser
<p>I can't hear sound in Android Chrome on the Google Translate website when I click on the speaker icon.</p> <p>I have turned sound on in Settings -&gt; Site settings, and the volume on my phone is turned up.</p> <p>Thanks.</p>
I can't hear sound in Android Chrome on the Google Translate website when I click on the speaker icon. I have turned sound on in Settings -> Site settings, and the volume on my phone is turned up. Thanks.
android|google-chrome
0
2022-09-24T11:06:50.033Z
2,022
9
11
5
11
0
204
34
2
0
false
true
false
false
false
false
zero
73,836,855
Android OpenCV move ROI according to phone movement
<p>I draw a Region Of Interest as an Imgproc.rectangle() based on image from camera and now I want this region to move up, down, left, right according to phone movement. How to achieve that?</p> <p>I was trying code from this project <a href="https://github.com/przemyslawstudzinski/object-tracking-app" rel="nofollow no...
I draw a Region Of Interest as an Imgproc.rectangle() based on image from camera and now I want this region to move up, down, left, right according to phone movement. How to achieve that? I was trying code from this project https://github.com/przemyslawstudzinski/object-tracking-app , but it is not what I expect
java|android|kotlin|opencv|android-camera
0
2022-09-24T11:28:51.807Z
2,022
9
11
5
10
0
313
51
5
0
false
true
false
false
false
false
zero
73,836,908
How to solve Navigation component exception "No destination with ID ..."?
<p>I have next navigation action:</p> <pre><code>&lt;action android:id=&quot;@+id/openNext&quot; app:destination=&quot;@id/nextFragment&quot; app:popUpTo=&quot;@id/firstFragment&quot; app:popUpToInclusive=&quot;false&quot; /&gt; </code></pre> <p>As you can see, I want to clear back stack, when I navigate to Nex...
I have next navigation action: [CODE] As you can see, I want to clear back stack, when I navigate to NextFragment. I use this action in code as usual: findNavController().navigate(openNext()) . But I get an exception &quot;No destination with ID...&quot;. I check if I really missed this destination: [CODE] I get really...
android|navigation|android-architecture-navigation
0
2022-09-24T11:35:29.723Z
2,022
9
11
5
36
0
480
73
3
3
true
true
false
false
false
false
zero
73,836,950
How do I emulate pen tablet input on windows?
<p>I want to use my android tablet with pressure sensitive stylus to as a drawing tablet with my PC I already figured out how to handle stylus position, pressure and button press using simple android app. The next steps are:</p> <ol> <li>Stream this data to PC (I chose to setup a local server, TCP or smth, where the ap...
I want to use my android tablet with pressure sensitive stylus to as a drawing tablet with my PC I already figured out how to handle stylus position, pressure and button press using simple android app. The next steps are: Stream this data to PC (I chose to setup a local server, TCP or smth, where the app data will be s...
python|android|tcp|device|tablet
1
2022-09-24T11:40:48.787Z
2,022
9
11
5
10
0
904
45
5
0
false
true
false
false
false
false
low