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,805,759 | How to make status bar and bottom navigation transparent in android using java in android studio? | <p>I want to make my Activity as full screen with transparent status bar and transparent bottom navigation bar.</p>
<p>I used some code but there is some issues in the screenshot below. These is some space below the status bar and also above the bottom navigation. How to resolve that?. Please anyone help.</p>
<p><a hre... | I want to make my Activity as full screen with transparent status bar and transparent bottom navigation bar. I used some code but there is some issues in the screenshot below. These is some space below the status bar and also above the bottom navigation. How to resolve that?. Please anyone help. | java|android|transparent|android-fullscreen | 0 | 2022-09-21T19:05:03.097Z | 2,022 | 9 | 19 | 2 | 19 | 1 | 296 | 97 | 4 | 0 | false | false | false | false | false | false | zero |
73,805,782 | how to set title formatter in prolificinteractive material-calendarview in kotlin | <p><a href="https://i.stack.imgur.com/UU3Ls.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/UU3Ls.jpg" alt="enter image description here" /></a>i'm using this method to set my title format but when i click on next arrow button month and year not change, sep,2022 not change</p>
<pre><code> <com.pr... | i'm using this method to set my title format but when i click on next arrow button month and year not change, sep,2022 not change [CODE] | android|kotlin|calendar|simpledateformat|dateformatter | 0 | 2022-09-21T19:07:07.880Z | 2,022 | 9 | 19 | 2 | 14 | 1 | 136 | 81 | 5 | 1 | true | false | false | false | false | false | zero |
73,806,044 | Send data from one class to another | <p>I have foreground service and need to do work on it. I get data from multiple sensors and I am currently sending them by constructor:</p>
<pre><code> new MainMeranie(latitude, longitude, altitude, pressureAccuracy, GPSaltitude).start(); //first class needs to send data approximately every second
</code></pre>
<p>I ... | I have foreground service and need to do work on it. I get data from multiple sensors and I am currently sending them by constructor: [CODE] I know that its wrong because then previous variable data in the second class gets deleted (nulled) [CODE] This needs to run on the foreground (it already is). I need second class... | java|android|class|android-activity|service | 0 | 2022-09-21T19:29:47.583Z | 2,022 | 9 | 19 | 2 | 24 | 0 | 541 | 35 | 5 | 2 | true | true | false | false | false | false | zero |
73,806,052 | Eclipse "An error has occurred. See the log file" | <blockquote>
<p>Eclipse "An error has occurred. See the log file" C:\Program Files\Android\adt-bundle-windows-x86_64-20130219\eclipse\configuration\1663787406897.log.</p>
</blockquote>
<p>with the actual log being</p>
<blockquote>
</blockquote>
<pre><code>!SESSION 2022-09-21 16:03:50.380 ---------------------... | Eclipse "An error has occurred. See the log file" C:\Program Files\Android\adt-bundle-windows-x86_64-20130219\eclipse\configuration\1663787406897.log. with the actual log being [CODE] I couldn't find any board that dealt with this | java|android|eclipse | 0 | 2022-09-21T19:30:39.197Z | 2,022 | 9 | 19 | 2 | 20 | 0 | 240 | 49 | 3 | 1 | true | true | false | false | false | false | zero |
73,806,165 | type mismatch when trying to read List from internal Storage | <p>I am new to Kotlin so please excuse this question, as it is probably pretty stupid...</p>
<p>So I followed the tutorial by Philipp Lackner to create a Todo-List as an android app if any of you know that. Now I tried to add a read and write functionality to this app by saving into a simple .txt-file for now.
For that... | I am new to Kotlin so please excuse this question, as it is probably pretty stupid... So I followed the tutorial by Philipp Lackner to create a Todo-List as an android app if any of you know that. Now I tried to add a read and write functionality to this app by saving into a simple .txt-file for now. For that I tried t... | android|kotlin | 0 | 2022-09-21T19:42:00.323Z | 2,022 | 9 | 19 | 2 | 29 | 1 | 1,337 | 60 | 2 | 1 | true | false | false | false | false | false | zero |
73,806,242 | Jetpack Compose focus jumps erratically using D-Pad navigation on Android TV | <p>I have been experiencing very erratic jumping when using Jetpack Compose’s LazyColumns on Android TV.
D-Pad navigation is supposed to be supported in Compose for a while now, but it seems simple cases are not supported—or I am doing something terribly wrong when setting a custom focus overlay.</p>
<p>The follow code... | I have been experiencing very erratic jumping when using Jetpack Compose’s LazyColumns on Android TV. D-Pad navigation is supposed to be supported in Compose for a while now, but it seems simple cases are not supported—or I am doing something terribly wrong when setting a custom focus overlay. The follow code results i... | android|android-jetpack-compose|android-tv | 0 | 2022-09-21T19:51:15.620Z | 2,022 | 9 | 19 | 2 | 17 | 0 | 824 | 76 | 3 | 1 | true | true | false | false | false | false | zero |
73,806,311 | React native web view stops working when I use getCurrentActivity in a native module | <p>I have an application in <code>React Native</code>, which uses a native module designed by me, in this module I process a payment and I need to use <code>getCurrentActivity()</code>. The method looks like this:</p>
<pre><code>@ReactMethod
public void createOpenpayCard(){
Activity activity = getCurrentActivity();
... | I have an application in React Native , which uses a native module designed by me, in this module I process a payment and I need to use getCurrentActivity() . The method looks like this: [CODE] The problem is that after executing this, the webview that I have in the same component, throws the following error: calling v... | android|react-native|webview | 0 | 2022-09-21T19:58:59.903Z | 2,022 | 9 | 19 | 2 | 7 | 0 | 558 | 84 | 3 | 2 | true | true | false | false | false | false | zero |
73,806,324 | Open TapTargetSequence only on first use of app | <p>I have this tab target and it plays sequentially, please I want to display it as only once during the first time using the application, please explain how to do this</p>
<pre><code>new TapTargetSequence(this)
.targets(
TapTarget.forView(findViewById(R.id.imgView1),
... | I have this tab target and it plays sequentially, please I want to display it as only once during the first time using the application, please explain how to do this [CODE] | java|android|tap|showcaseview | 0 | 2022-09-21T20:00:24.423Z | 2,022 | 9 | 20 | 2 | 17 | 0 | 172 | 47 | 4 | 1 | true | true | false | false | false | false | zero |
73,806,362 | How can I change the Android Spinner Date Picker background color to match light/dark mode in Xamarin.Forms? | <h2>Summary</h2>
<p>I would like to use the <em>spinner</em> mode for the Android DatePicker in Xamarin.Forms. This can be set in styles.xlm, but doing so always results in the date picker appearing as dark rather than light. How can I both assign the date picker to be spinner as well as use the default light/dark back... | Summary I would like to use the spinner mode for the Android DatePicker in Xamarin.Forms. This can be set in styles.xlm, but doing so always results in the date picker appearing as dark rather than light. How can I both assign the date picker to be spinner as well as use the default light/dark backgrounds. If it matter... | android|xamarin|android-styles | 0 | 2022-09-21T20:04:48.193Z | 2,022 | 9 | 20 | 2 | 41 | 1 | 1,771 | 108 | 3 | 3 | true | false | false | false | false | false | zero |
73,806,623 | Jetpack Compose: How to click on Maker in Google Maps? | <p>I use <a href="https://github.com/googlemaps/android-maps-compose" rel="nofollow noreferrer">official</a> Google Maps Compose lib and I can't understand...how implement click on the marker?</p>
<pre class="lang-kotlin prettyprint-override"><code>@Composable
fun MapContent(city: City) {
val pos = LatLng(city.lat... | I use official Google Maps Compose lib and I can't understand...how implement click on the marker? [CODE] It doesn't work. Can you help me, what's wrong? I want to click on the marker and show BottomSheet with City info, but it looks like onClick doesn't work... [CODE] | android|google-maps-api-3|google-maps-markers|google-maps-android-api-2|google-maps-api-2 | 0 | 2022-09-21T20:30:48.827Z | 2,022 | 9 | 20 | 2 | 18 | 0 | 269 | 54 | 5 | 2 | true | true | false | false | false | false | zero |
73,806,633 | notification arrives in bluestack apk emulator, but does not generate notification on smartphone firebase android studio | <p>notification arrives in bluestack apk emulator, but does not generate notification on smartphone</p>
<p>I have the following code, the notification works normally on the bluestack emulator, but on the samsung smartphone there is no notification, I don't know if it's the device or if I have to declare something in th... | notification arrives in bluestack apk emulator, but does not generate notification on smartphone I have the following code, the notification works normally on the bluestack emulator, but on the samsung smartphone there is no notification, I don't know if it's the device or if I have to declare something in the manifest... | java|android-studio|firebase-realtime-database | 0 | 2022-09-21T20:31:36.427Z | 2,022 | 9 | 20 | 2 | 10 | 0 | 545 | 120 | 3 | 1 | true | true | false | false | false | false | zero |
73,806,828 | LottieAnimation not displaying in @Preview | <p>My LottieAnimation is not showing inside of a jetpack compose <code>@Preview</code> fun. It works fine when running on an actual device.</p>
<pre><code>@Preview
@Composable
fun LottiePreview() {
MaterialTheme {
Surface {
Column {
Text(text = "Above lottie")
... | My LottieAnimation is not showing inside of a jetpack compose @Preview fun. It works fine when running on an actual device. [CODE] I've tinkered with different settings and constructors but haven't been able to get the preview to work - I also have been unable to find any documentation or open issues on this. Am I just... | android-jetpack-compose|lottie | 0 | 2022-09-21T20:52:41.307Z | 2,022 | 9 | 20 | 2 | 22 | 1 | 382 | 42 | 2 | 1 | true | false | false | false | false | false | zero |
73,806,918 | Is it possible to hide the Play Store App of a fully managed device without designating a kiosk app? | <p>I would like to install many apps on a fully managed device and have the user launch the apps using the Android launcher. However, I don't want the user to see the Google Play Store app. Is this possible?</p>
<p>In the device policy, tried setting the installType to "BLOCKED" for an application with packag... | I would like to install many apps on a fully managed device and have the user launch the apps using the Android launcher. However, I don't want the user to see the Google Play Store app. Is this possible? In the device policy, tried setting the installType to "BLOCKED" for an application with package name &qu... | android-management-api | 0 | 2022-09-21T21:04:02.230Z | 2,022 | 9 | 21 | 2 | 34 | 1 | 398 | 100 | 1 | 0 | false | false | false | false | false | false | zero |
73,807,027 | Alternative to MULTIPLY mode | <p>I had a function that was using a deprecated method (<code>public void setColorFilter (int color, PorterDuff.Mode mode)</code>) and I have tried to change it using a non-deprecated method but the problem is that now using the non-deprecated method the MULTIPLY method needs API level 29:</p>
<blockquote>
<p>"Fie... | I had a function that was using a deprecated method ( public void setColorFilter (int color, PorterDuff.Mode mode) ) and I have tried to change it using a non-deprecated method but the problem is that now using the non-deprecated method the MULTIPLY method needs API level 29: "Field requires API level 29 (current ... | java|android|textview|imageview|android-drawable | 0 | 2022-09-21T21:16:54.267Z | 2,022 | 9 | 21 | 2 | 32 | 0 | 856 | 28 | 5 | 3 | true | true | false | false | false | false | zero |
73,807,061 | How to remove background locations permissions from react native app | <p>I created a simple ToDoList app, i have not added any packages or code to access the location. On publishing on playstore, there is an error which says that your app is accessing background location. I have only installed a single package in my project which is ion icons. I also checked the android.manifest, but i c... | I created a simple ToDoList app, i have not added any packages or code to access the location. On publishing on playstore, there is an error which says that your app is accessing background location. I have only installed a single package in my project which is ion icons. I also checked the android.manifest, but i cant... | android|react-native | 0 | 2022-09-21T21:22:16.670Z | 2,022 | 9 | 21 | 2 | 10 | 0 | 365 | 68 | 2 | 0 | false | true | false | false | false | false | zero |
73,807,065 | Could not find method classpath() for arguments [com.android.tools.build:gradle:7.3.0] | <p>I am trying to run a source code of an app, and it shows the error below.</p>
<pre class="lang-none prettyprint-override"><code> Build file 'C:\Users\SQ\Downloads\application\build.gradle' line: 24
A problem occurred evaluating root project 'application'.
> Could not find method classpath() for arguments [com.an... | I am trying to run a source code of an app, and it shows the error below. [CODE] In settings > gradle it shows an error in gradle-wrapper.properties, I tried changing it to specific location but the error changed. Error: [CODE] What should I do? | android|flutter|android-studio|dart|visual-studio-code | 0 | 2022-09-21T21:23:03.403Z | 2,022 | 9 | 21 | 2 | 36 | 0 | 245 | 86 | 5 | 2 | true | true | false | false | false | false | zero |
73,807,150 | Error: "ACodec: [OMX.google.hevc.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010" | <p>An app streams H.265 (HEVC) video without any problem, so I am asking this question out of curiosity.</p>
<p>Logcat periodically shows the following error:</p>
<blockquote>
<p>E/ACodec: [OMX.google.hevc.decoder] setPortMode on output to
DynamicANWBuffer failed w/ err -1010</p>
</blockquote>
<p>I do not see anything ... | An app streams H.265 (HEVC) video without any problem, so I am asking this question out of curiosity. Logcat periodically shows the following error: E/ACodec: [OMX.google.hevc.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I do not see anything noticeably wrong with the video. I am wondering wha... | android-mediacodec | 0 | 2022-09-21T21:32:06.393Z | 2,022 | 9 | 21 | 2 | 7 | 0 | 516 | 104 | 1 | 0 | false | true | false | false | false | false | zero |
73,807,208 | Best way to deal with subscription's premium content | <p>I have an app where the data is stored in a JSON file as part of the app bundle, and the app reads from it.</p>
<p>I am now adding subscriptions to my app, and want to charge for more content. I am aware of a couple of potential options right now:</p>
<ol>
<li><p>store the JSON file that contains all the premium con... | I have an app where the data is stored in a JSON file as part of the app bundle, and the app reads from it. I am now adding subscriptions to my app, and want to charge for more content. I am aware of a couple of potential options right now: store the JSON file that contains all the premium content for the subscription ... | java|android|ios|json|swift | 0 | 2022-09-21T21:39:43.953Z | 2,022 | 9 | 21 | 2 | 24 | 0 | 1,122 | 52 | 5 | 0 | false | true | false | false | false | false | zero |
73,807,299 | Is there a way to start a composable component in a not composable component | <p>since Compose is still pretty new I am trying to see better ways to navigate some challenges, for instance I encountered recomposition when trying to listen to Logging In State in my view model. <code>MutableStateFlow<LoggingInState></code> This lead me to just directly in my <code>ComponentActivity()</code> ... | since Compose is still pretty new I am trying to see better ways to navigate some challenges, for instance I encountered recomposition when trying to listen to Logging In State in my view model. MutableStateFlow<LoggingInState> This lead me to just directly in my ComponentActivity() having my setContent{navigation} and... | android-jetpack-compose|android-jetpack | 0 | 2022-09-21T21:50:39.780Z | 2,022 | 9 | 21 | 2 | 27 | 1 | 694 | 76 | 2 | 2 | true | false | false | false | false | false | zero |
73,807,321 | Is there a way to fetch multiple RSS feeds in Flutter? | <p>I am trying to set up an RSS feed for my application, so it would be interesting to put several different RSS links into it. However, I've already tried several ways to execute this task, like putting various links directly in a List, and each time I failed and couldn't find a solution anywhere.</p>
<p>So the big qu... | I am trying to set up an RSS feed for my application, so it would be interesting to put several different RSS links into it. However, I've already tried several ways to execute this task, like putting various links directly in a List, and each time I failed and couldn't find a solution anywhere. So the big question is:... | android|ios|flutter|dart|rss | 0 | 2022-09-21T21:53:15.307Z | 2,022 | 9 | 21 | 2 | 23 | 1 | 354 | 54 | 5 | 1 | true | false | false | false | false | false | zero |
73,807,494 | Android Intent BroadcastReceiver Example | <p>I am using a Zebra Android Scan-Gun and need to capture the <strong>hard-keyboard</strong> (not soft) keystrokes for P1, P2, F1, F2, etc... keys. Since Maui doesn't have events for <code>KeyUp</code>/<code>KeyDown</code>/<code>KeyPressed</code> there is nothing to inform me of a special keys being pressed. Not to ... | I am using a Zebra Android Scan-Gun and need to capture the hard-keyboard (not soft) keystrokes for P1, P2, F1, F2, etc... keys. Since Maui doesn't have events for KeyUp / KeyDown / KeyPressed there is nothing to inform me of a special keys being pressed. Not to mention I also have to put an Entry field on screens wher... | c#|android|.net-core|.net-maui|zebra-scanners | 0 | 2022-09-21T22:17:58.160Z | 2,022 | 9 | 22 | 2 | 27 | 1 | 1,351 | 40 | 5 | 2 | true | false | false | false | false | false | zero |
73,807,512 | Android notifyDataSetChanged behave differently | <p>I have two different applications, that update a list in both cases.</p>
<p><strong>App1</strong></p>
<pre><code>addButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
dataList.add("NEW CITY");
cityAdapter... | I have two different applications, that update a list in both cases. App1 [CODE] Here, my floating action button, update the list with const string (as test input). If I don't use notifyDataSetChanged the list will not show the 'NEW CITY' text. App2 This one is a bit more complex than the App1, because now use a fragme... | android|android-listview|android-arrayadapter | 0 | 2022-09-21T22:20:54.710Z | 2,022 | 9 | 22 | 2 | 11 | 0 | 723 | 47 | 3 | 3 | true | true | false | false | false | false | zero |
73,807,724 | Failed to read Firebase options from the app's resources | <p>I get the error <code>Failed to read Firebase options from the app's resources. Either make sure google-services.json is included in your build or specify options explicitly.</code>
When building the unity game to android, even though it works in the editor.</p>
<p>I have tried all the solutions of previous questio... | I get the error Failed to read Firebase options from the app's resources. Either make sure google-services.json is included in your build or specify options explicitly. When building the unity game to android, even though it works in the editor. I have tried all the solutions of previous questions. Notably, I don't hav... | android|firebase|unity3d | 1 | 2022-09-21T22:57:41.253Z | 2,022 | 9 | 22 | 2 | 25 | 1 | 590 | 56 | 3 | 0 | false | false | false | false | false | false | low |
73,807,783 | Can someone explain to me what are the difference between this two results? | <p>I'm doing tests in android studio for a tutorial and the test results show me this:</p>
<pre><code>expected:<2,00[ ]$> but was:<2,00[ ]$>
Expected :2,00 $
Actual :2,00 $
</code></pre>
<p>I'm a bit confused ! both are the same string....</p>
<p>EDIT:</p>
<p>This is the method i'm testing</p>
<pre><code>... | I'm doing tests in android studio for a tutorial and the test results show me this: [CODE] I'm a bit confused ! both are the same string.... EDIT: This is the method i'm testing [CODE] This is the test assertion: [CODE] | android|testing | 2 | 2022-09-21T23:10:34.370Z | 2,022 | 9 | 23 | 2 | 34 | 1 | 219 | 75 | 2 | 3 | true | false | false | false | false | false | low |
73,807,805 | Type inference failed in kotlin jetpack compose | <p>I am following this <a href="https://github.com/google/accompanist/issues/1066" rel="nofollow noreferrer">issue</a> from accompanist permission. The person is using single permission request from the <a href="https://github.com/google/accompanist/issues/1066#issuecomment-1185096575" rel="nofollow noreferrer">issue</... | I am following this issue from accompanist permission. The person is using single permission request from the issue . I am trying to convert to work for multiple permission. [CODE] When I am unable to fix this problem for showRational() check condition. It giving me error can someone guide me on this [CODE] Is this rig... | android|kotlin|android-jetpack-compose|android-jetpack|runtime-permissions | 0 | 2022-09-21T23:15:02.483Z | 2,022 | 9 | 23 | 2 | 49 | 1 | 361 | 47 | 5 | 2 | true | false | false | false | false | false | zero |
73,807,806 | How to get an Activity in a ReactMethod? | <p>I have an application made in <code>React Native</code> with a native module, in one of the methods of the native module I need to access an <code>Activity</code> to be able to generate a token through an SDK.</p>
<p>The method looks like this:</p>
<pre><code>@ReactMethod
public void createOpenpayCard(String holderN... | I have an application made in React Native with a native module, in one of the methods of the native module I need to access an Activity to be able to generate a token through an SDK. The method looks like this: [CODE] To the setup method, I must send an activity and it must be different from getCurrentActivity() I hav... | android|react-native | 0 | 2022-09-21T23:15:39.213Z | 2,022 | 9 | 23 | 2 | 9 | 0 | 477 | 40 | 2 | 1 | true | true | false | false | false | false | zero |
73,807,819 | Persist states after viewModelLifecyle till the app get closed | <p>I'm a beginner android developer and I got stuck with an issue.</p>
<p>viewModel keeps the states change data related to a fragment and when the user navigate to some fragment then the viewModel no longer keeps the states.</p>
<p>What I want is that when the user change something in the fragment and after that navig... | I'm a beginner android developer and I got stuck with an issue. viewModel keeps the states change data related to a fragment and when the user navigate to some fragment then the viewModel no longer keeps the states. What I want is that when the user change something in the fragment and after that navigate to other frag... | android|state | 0 | 2022-09-21T23:17:25.880Z | 2,022 | 9 | 23 | 2 | 24 | 1 | 826 | 62 | 2 | 2 | true | false | false | false | false | false | zero |
73,807,885 | React Native Bluetooth - control app with bluetooth | <p>I am working on an app in react native, and I have to connect it with a device through bluetooth. From the device I can control my application, has anyone worked with something similar?</p>
<p>There is very little information on the internet about it.</p> | I am working on an app in react native, and I have to connect it with a device through bluetooth. From the device I can control my application, has anyone worked with something similar? There is very little information on the internet about it. | android|reactjs|react-native|mobile | 0 | 2022-09-21T23:29:45.667Z | 2,022 | 9 | 23 | 2 | 16 | 1 | 244 | 51 | 4 | 0 | false | false | false | false | false | false | zero |
73,807,887 | Unsupported metadata version. Check that your Kotlin version is >= 1.0 after update some plugins | <p>I just updates the following plugins in my gradle files</p>
<pre><code> implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
</code></pre>
<p>and second gradle file I updated kotlin version</p>
<pre><code>kotlin_version = "1.7.10"
</code></pre>
<p>then I got th... | I just updates the following plugins in my gradle files [CODE] and second gradle file I updated kotlin version [CODE] then I got this error [CODE] this the full gradle projects/modules file [CODE] and this build gradle app dependices [CODE] | android|kotlin|android-gradle-plugin|dagger-2|dagger-hilt | 1 | 2022-09-21T23:30:17.853Z | 2,022 | 9 | 23 | 2 | 32 | 1 | 240 | 96 | 5 | 5 | true | false | false | false | false | false | low |
73,807,906 | Android12 build error: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE | <p>I got this error after testing on my Android 12. I already tried this 2 changes:</p>
<p>1- adding android:exported="true"</p>
<pre><code><activity android:exported="true"...>...</activity>
</code></pre>
<p>2- Adding workruntime on android/app/build.gradle</p>
<pre><code> def work_v... | I got this error after testing on my Android 12. I already tried this 2 changes: 1- adding android:exported="true" [CODE] 2- Adding workruntime on android/app/build.gradle [CODE] My package.json configuration is: [CODE] The image error: What should I do? | react-native|react-native-firebase|android-12 | 1 | 2022-09-21T23:35:04.353Z | 2,022 | 9 | 23 | 2 | 25 | 0 | 264 | 110 | 3 | 3 | true | true | false | false | false | false | low |
73,807,937 | Am Deploying an api in my model i used heroku but when i run my android app i get only one result yet in postman i get two results and no errors | <p>this is my java code and i am using volley and there are no errors in the code and the api works correctly when put in post man but when it come to android and i post my data it only shows one result yet in post man am able to see two results</p>
<pre><code>package com.tonnykratos.heartdiseasepredictionz;
import an... | this is my java code and i am using volley and there are no errors in the code and the api works correctly when put in post man but when it come to android and i post my data it only shows one result yet in post man am able to see two results [CODE] and also this is where i created my api from and hosted it ar heroku [... | python|android|flask | -1 | 2022-09-21T23:43:29.760Z | 2,022 | 9 | 23 | 2 | 17 | 0 | 325 | 144 | 3 | 2 | true | true | false | false | false | true | negative |
73,807,987 | Using guidelines with layout_constraintGuide_percent vs. dp spacing Android | <p>In Android, I've been using guidelines with app:layout_constraintGuide_percent to avoid having to hardcode dp values. I believe (could be wrong) that this helps keep UIs sane across various screen sizes and avoid having to support various different dimensions for various different configurations (e.g. for a button 2... | In Android, I've been using guidelines with app:layout_constraintGuide_percent to avoid having to hardcode dp values. I believe (could be wrong) that this helps keep UIs sane across various screen sizes and avoid having to support various different dimensions for various different configurations (e.g. for a button 25 d... | android|android-constraintlayout | 0 | 2022-09-21T23:49:25.110Z | 2,022 | 9 | 23 | 2 | 16 | 0 | 729 | 75 | 2 | 0 | false | true | false | false | false | false | zero |
73,808,066 | Inquiries about when an object is destroyed | <pre><code> switch ((CellMode)btn.BtnID)
{
case CellMode.Single:
{
xMainContents.Children.Clear();
using (SingleMode single = new SingleMode())
{
... | [CODE] When the xMainContents.clear() function is called, all objects inside are destroyed? It is not called when testing. If you leave the using statement, Dispose is called, and the question is destroyed after Children.Add(), and the screen appears. Since I only used C++, I have a question about the process of destru... | xamarin|xamarin.forms|xamarin.android | 0 | 2022-09-22T00:06:23.287Z | 2,022 | 9 | 0 | 3 | 27 | 0 | 391 | 43 | 3 | 1 | true | true | false | false | false | false | zero |
73,808,148 | How to change gradlew .env file? | <p>I have a react native project.</p>
<p>I want to build a release to publish on play store, here in react native official <a href="https://reactnative.dev/docs/signed-apk-android#generating-the-release-aab" rel="nofollow noreferrer">documentation</a> to publish an app we can see:</p>
<blockquote>
<h2>Generating the re... | I have a react native project. I want to build a release to publish on play store, here in react native official documentation to publish an app we can see: Generating the release AAB Run the following in a terminal: [CODE] Here is the first outputs I got: [CODE] gradlew is reading my env vars in .env file while I got ... | android|react-native|gradle|gradlew | 0 | 2022-09-22T00:25:13.503Z | 2,022 | 9 | 0 | 3 | 36 | 1 | 394 | 32 | 4 | 2 | true | false | false | false | false | false | zero |
73,808,192 | Android Studio crashes when uses Melos | <p>Flutter project. When AS tries to index project it is broken with exception below. It makes AS useless. It has started after installing Melos.</p>
<p>Dart Plugin - 213.7371
AS - 2021.3.1</p>
<pre><code>java.lang.IllegalStateException: Exclude folder file://C:/Dev/Projects/mobile-websales-git/.dart_tool must be under... | Flutter project. When AS tries to index project it is broken with exception below. It makes AS useless. It has started after installing Melos. Dart Plugin - 213.7371 AS - 2021.3.1 [CODE] | flutter|android-studio|dart|melos | 0 | 2022-09-22T00:34:51.560Z | 2,022 | 9 | 0 | 3 | 13 | 0 | 186 | 38 | 4 | 1 | true | true | false | false | false | false | zero |
73,808,211 | how to make shuffled flashcards on android studio with audio | <p>I am new to android studio. I have watched a few tutorials on youtube on how to make flashcards, and now that i have made one.</p>
<p>I want to have 100 flashcards with different words and its meaning, however i am clueless on how should i make the code efficient. If i am going to produce the same layout- only with ... | I am new to android studio. I have watched a few tutorials on youtube on how to make flashcards, and now that i have made one. I want to have 100 flashcards with different words and its meaning, however i am clueless on how should i make the code efficient. If i am going to produce the same layout- only with different ... | java|android|firebase | -1 | 2022-09-22T00:38:48.087Z | 2,022 | 9 | 0 | 3 | 23 | 0 | 823 | 60 | 3 | 2 | true | true | false | false | false | true | negative |
73,808,286 | Update Android Gradle Plugin from Command line | <p>If possible, how can I update Android Gradle Plugin from the Command line instead of using Android Studio?</p> | If possible, how can I update Android Gradle Plugin from the Command line instead of using Android Studio? | command-line|android-gradle-plugin | 0 | 2022-09-22T00:58:15.910Z | 2,022 | 9 | 0 | 3 | 11 | 0 | 106 | 46 | 2 | 0 | false | true | false | false | false | false | zero |
73,808,354 | What are the steps in building an SDK in Android Studio? | <p>Recently I have been seeing a lot about SDK's in Android and how others have created ones from scratch. There's not a lot of material online on how to go about creating an SDK in Android, so I am asking anyone here who can clarify or give an overview into achieving it. This would be a great help to me, thank you.</p... | Recently I have been seeing a lot about SDK's in Android and how others have created ones from scratch. There's not a lot of material online on how to go about creating an SDK in Android, so I am asking anyone here who can clarify or give an overview into achieving it. This would be a great help to me, thank you. P.S. ... | java|android|kotlin | 0 | 2022-09-22T01:13:26.860Z | 2,022 | 9 | 1 | 3 | 36 | 0 | 412 | 56 | 3 | 0 | false | true | false | false | false | false | zero |
73,808,377 | IntelliJ IDEA app unable to connect to Firebase | <p>While testing my android java app built using IntelliJ Idea 2022.2.2, The app cannot move past the loading screen. Initially, I thought this was a problem with the emulator's internet, however, I was able to use Google Chrome on the emulator without any issue.</p>
<p>I have not changed any code relating to the Login... | While testing my android java app built using IntelliJ Idea 2022.2.2, The app cannot move past the loading screen. Initially, I thought this was a problem with the emulator's internet, however, I was able to use Google Chrome on the emulator without any issue. I have not changed any code relating to the Login Screen, a... | java|firebase|intellij-idea|android-emulator | 0 | 2022-09-22T01:18:03.817Z | 2,022 | 9 | 1 | 3 | 50 | 0 | 977 | 47 | 4 | 1 | true | true | false | false | false | false | zero |
73,808,393 | How to align text justify with textSticker in StickerView library | <p>As title, i make a app photoEditor and i want align text justify.
There's only CENTER, LEFT, and RIGHT.
Has anyone been able to resolve this issue?</p> | As title, i make a app photoEditor and i want align text justify. There's only CENTER, LEFT, and RIGHT. Has anyone been able to resolve this issue? | java|android|text|justify | 0 | 2022-09-22T01:20:28.813Z | 2,022 | 9 | 1 | 3 | 11 | 0 | 147 | 65 | 4 | 0 | false | true | false | false | false | false | zero |
73,808,575 | While pressing HARDWARE button | <p>I would like to do something while any hardware button is pressed (not after it is released).I know how to do it with a regular button, but how can I achieve it with a hardware button?</p>
<p>This is the behavior I want to simulate using a hardware button.</p>
<pre><code>button.setOnTouchListener(new View.OnTouchLis... | I would like to do something while any hardware button is pressed (not after it is released).I know how to do it with a regular button, but how can I achieve it with a hardware button? This is the behavior I want to simulate using a hardware button. [CODE] | java|android|button|android-hardware | 0 | 2022-09-22T02:04:29.513Z | 2,022 | 9 | 2 | 3 | 19 | 1 | 256 | 30 | 4 | 1 | true | false | false | false | false | false | zero |
73,808,585 | Why is Admob not working alongside lottie | <p>i am using admob in my app, after adding lottie library to gradle, the app is not working.</p>
<p>When removing lottie library, there is no error.</p>
<p>Here is my gradle:</p>
<pre><code>implementation 'com.airbnb.android:lottie:5.2.0'
implementation 'com.google.android.gms:play-services-ads:21.2.0'
</code></pre>
<... | i am using admob in my app, after adding lottie library to gradle, the app is not working. When removing lottie library, there is no error. Here is my gradle: [CODE] On launching i get the below error. [CODE] | android|gradle|admob|lottie | 0 | 2022-09-22T02:05:55.993Z | 2,022 | 9 | 2 | 3 | 25 | 0 | 208 | 41 | 4 | 2 | true | true | false | false | false | false | zero |
73,808,643 | How to convert TimeOfDay in dart into a string | <p>I want to convert TimeOfDay from API into a string and show it in table. The problem is, i don't know how to convert it into a string</p>
<pre><code> class UserInfo {
String tanggal = DateFormat("yyyy-MM-dd").format(DateTime.now());
TimeOfDay pulang;
UserInfo(
thi... | I want to convert TimeOfDay from API into a string and show it in table. The problem is, i don't know how to convert it into a string [CODE] | android|ios|flutter|dart|type-conversion | 1 | 2022-09-22T02:16:05.670Z | 2,022 | 9 | 2 | 3 | 33 | 1 | 140 | 46 | 5 | 1 | true | false | false | false | false | false | low |
73,808,649 | Should I place event listeners on the onCreate method or on the onResume method? | <p>I'm a begginer to android development, and I'm trying to add an event listener to a button without using an onClick() in the xml file. Where should I place my event listener and should I remove it somewhere, say, on the onStop method?</p>
<p>Thanks</p> | I'm a begginer to android development, and I'm trying to add an event listener to a button without using an onClick() in the xml file. Where should I place my event listener and should I remove it somewhere, say, on the onStop method? Thanks | android|android-studio | 0 | 2022-09-22T02:16:52.293Z | 2,022 | 9 | 2 | 3 | 32 | 2 | 241 | 80 | 2 | 0 | false | false | false | false | false | false | zero |
73,808,732 | How to prevent re-render of previous screen when navigating back - Jetpack Compose? | <p><a href="https://i.stack.imgur.com/jPraG.gif" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/jPraG.gif" alt="enter image description here" /></a></p>
<p>I have two screens - <strong>MapScreen(Google Map SDK)</strong> and <strong>Search Screen</strong>.</p>
<p>I navigate from MapScreen to SearchScreen ... | I have two screens - MapScreen(Google Map SDK) and Search Screen . I navigate from MapScreen to SearchScreen by pressing the "Search" button on the top. When I am on SearchScreen(White screen) - I press the back button to navigate back to Map Screen. When we navigate back, the whole MapScreen(especially Googl... | android|android-jetpack-compose|google-maps-android-api-2|android-jetpack|android-jetpack-navigation | 0 | 2022-09-22T02:29:39.847Z | 2,022 | 9 | 2 | 3 | 30 | 1 | 482 | 83 | 5 | 1 | true | false | false | false | false | false | zero |
73,808,745 | R.id.webview error: cannot find symbol in MainActivity.java | <p>Good day,</p>
<p>I am doing a <code>cordova</code> mobile app, and I am trying to access to <code>webview</code> to configure something. I google around, the way to get the <code>webview</code> object is something as follow:</p>
<pre><code>WebView webView = (WebView) this.findViewById(R.id.webview);
</code></pre>
<p... | Good day, I am doing a cordova mobile app, and I am trying to access to webview to configure something. I google around, the way to get the webview object is something as follow: [CODE] I put this code in my MainActivity.java, but I hit error when I trying to build my code: I google around and found that many post was ... | java|android|webview | 0 | 2022-09-22T02:31:27.233Z | 2,022 | 9 | 2 | 3 | 29 | 0 | 572 | 59 | 3 | 1 | true | true | false | false | false | false | zero |
73,808,793 | I'm getting this error when I tried to run main.dart on my physical android device. Please can anybody help me to fix this error | <p>When I execute <code>flutter run</code> command then:</p>
<pre><code>E:\Flutter_Projects\test_project_2\android>flutter run
Changing current working directory to: E:\Flutter_Projects\test_project_2
Launching lib\main.dart on ART L28 in debug mode...
Exception in thread "main" java.lang.RuntimeExcep... | When I execute flutter run command then: [CODE] | flutter|android-studio|gradle | -2 | 2022-09-22T02:42:00.823Z | 2,022 | 9 | 2 | 3 | 39 | 1 | 47 | 128 | 3 | 1 | true | false | false | false | false | true | negative |
73,808,811 | building AOSP 13 error:"bionic-benchmarks-glibc" depends on undefined module "libtinyxml2" | <p>AILED: out/soong/build.ninja
cd "$(dirname "out/host/linux-x86/bin/soong_build")" && BUILDER="$PWD/$(basename "out/host/linux-x86/bin/soong_build")" && cd / && env -i "$BUILDER" --top "$TOP" --soong_ou
t "out/soong"... | AILED: out/soong/build.ninja cd "$(dirname "out/host/linux-x86/bin/soong_build")" && BUILDER="$PWD/$(basename "out/host/linux-x86/bin/soong_build")" && cd / && env -i "$BUILDER" --top "$TOP" --soong_ou t "out/soong" --out "out" -o out/soong... | android|linux|node-modules|android-source | 0 | 2022-09-22T02:45:55.080Z | 2,022 | 9 | 2 | 3 | 5 | 0 | 855 | 90 | 4 | 0 | false | true | false | false | false | false | zero |
73,808,905 | How to use recycleview in android to achieve the effect in the figure | <p><a href="https://i.stack.imgur.com/wiA5b.png" rel="nofollow noreferrer">How to use recycleview in android to achieve the effect in the figure</a></p> | How to use recycleview in android to achieve the effect in the figure | android|android-recyclerview | -1 | 2022-09-22T03:04:02.050Z | 2,022 | 9 | 3 | 3 | 26 | 0 | 69 | 69 | 2 | 0 | false | true | false | false | false | true | negative |
73,808,992 | Please help me. Error display when use Intent with Fragment | <p><a href="https://i.stack.imgur.com/0xuTf.png" rel="nofollow noreferrer">enter image description here</a>[class PingTool : Fragment() {</p>
<pre><code>override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val inte: Intent = Intent(requireContext(), PingActivity::class.java)
... | enter image description here [class PingTool : Fragment() { [CODE] | android|kotlin|android-intent|fragment | -1 | 2022-09-22T03:21:00.747Z | 2,022 | 9 | 3 | 3 | 31 | 0 | 66 | 59 | 4 | 1 | true | true | false | false | false | true | negative |
73,809,017 | how to format a string into a LocalDate | <p>I have an android app that requires user's date of birth and the data type is LocalDate because the backend uses it to calculate the age of that user and assign how much he/she will have to pay for the registration depending on the age. I have a button that when click, it will pop up a calendar dialog for the user t... | I have an android app that requires user's date of birth and the data type is LocalDate because the backend uses it to calculate the age of that user and assign how much he/she will have to pay for the registration depending on the age. I have a button that when click, it will pop up a calendar dialog for the user to s... | java|android|formatting|localdate | 0 | 2022-09-22T03:25:16.380Z | 2,022 | 9 | 3 | 3 | 43 | 1 | 801 | 39 | 4 | 1 | true | false | false | false | false | false | zero |
73,809,027 | use of enum in retrofit response with Kotlin | <p>I am building an app with retrofit and I have a data class to represent the model.</p>
<pre><code>data class RetrofitModel(
@SerializedName("lock_status") val lockStatus: LockStatus,
@SerializedName("door_status") val doorStatus: DoorStatus,
)
@Keep
enum class LockStatus(status: String) ... | I am building an app with retrofit and I have a data class to represent the model. [CODE] Overall the the code works fine but when I try later to extract the value of the DoorStatus class, it doesn't work for the door_open if I do a lockStatus.name I will get Unlocked or Locked depending on the status received but for ... | android|kotlin|enums | 0 | 2022-09-22T03:26:29.073Z | 2,022 | 9 | 3 | 3 | 18 | 1 | 450 | 44 | 3 | 1 | true | false | false | false | false | false | zero |
73,809,055 | Frida server keeps respawning | <p>I have a frida server running on my phone. I want to stop it and start a different one.</p>
<p>Running <code>ps -A | grep frida</code> gives me the PID to kill.</p>
<pre><code>root 19124 1064 132952 48396 poll_schedule_timeout 7b141fd0c8 S frida-server
root 19359 1 15560 2420 poll_schedule... | I have a frida server running on my phone. I want to stop it and start a different one. Running ps -A | grep frida gives me the PID to kill. [CODE] I run the kill command kill -9 19124 . It does kill the process, how ever the issue is that new one spawns. [CODE] How can I stop the current frida server from running? I e... | android|process|pid|frida | 0 | 2022-09-22T03:32:15.897Z | 2,022 | 9 | 3 | 3 | 13 | 1 | 424 | 29 | 4 | 2 | true | false | false | false | false | false | zero |
73,809,085 | Android how to zip all file selected in one zip file | <p>I have one list all files.
My code get all file in device, and select list some file i want to zip in 1 file zip. How to i can zip all file selected in one zip file ?</p>
<pre><code>fun getAllDir(dir: File) {
val listFile = dir.listFiles()
if (listFile != null) {
for (i in listFile.indice... | I have one list all files. My code get all file in device, and select list some file i want to zip in 1 file zip. How to i can zip all file selected in one zip file ? [CODE] | android|file|zip | 0 | 2022-09-22T03:36:40.137Z | 2,022 | 9 | 3 | 3 | 28 | 1 | 173 | 52 | 3 | 1 | true | false | false | false | false | false | zero |
73,809,158 | Android - Custom BigPicture style notification not working in android 13 device | <p>After updating the android project to android 12, <strong>big picture style custom notifications</strong> are not working in Android 13 devices, but they work in lower versions of Android 12 & below devices.</p>
<p>If I use the local image drawable it is working in Android 13 also, if I load an image from the UR... | After updating the android project to android 12, big picture style custom notifications are not working in Android 13 devices, but they work in lower versions of Android 12 & below devices. If I use the local image drawable it is working in Android 13 also, if I load an image from the URL in custom big picture style n... | android|push-notification|android-12|custom-notification | 0 | 2022-09-22T03:51:16.367Z | 2,022 | 9 | 3 | 3 | 19 | 0 | 535 | 79 | 4 | 0 | false | true | false | false | false | false | zero |
73,809,232 | saving default camera for zxing | <p>Devices now have multiple cameras. The goal is to allow a user to have a preferred camera be saved as the default camera.</p>
<p>I somehow expected that Andriod would allow such an action, but have failed to find any such setting (Android 9).</p>
<p>Another way would be to store the value of the camera and integrat... | Devices now have multiple cameras. The goal is to allow a user to have a preferred camera be saved as the default camera. I somehow expected that Andriod would allow such an action, but have failed to find any such setting (Android 9). Another way would be to store the value of the camera and integrate into the script.... | android|ios|zxing | 0 | 2022-09-22T04:05:46.193Z | 2,022 | 9 | 4 | 3 | 11 | 0 | 413 | 31 | 3 | 0 | false | true | false | false | false | false | zero |
73,809,272 | Anybody help how to play Video from youtube to detected image from my assets In ARCORE flutter? | <pre><code>import 'package:arcore_flutter_plugin/arcore_flutter_plugin.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:vector_math/vector_math_64.dart';
class ArDemo extends StatefulWidget {
const ArDemo({Key? key}) : super(key: key);
@override
State<ArD... | [CODE] hear is my Code and I want to play video while image is detected in android device. but not work this time dependencies: arcore_flutter_plugin: ^0.0.11 assets/earth.jpg I want this type of result but this made by unity | android|flutter | -1 | 2022-09-22T04:13:59.070Z | 2,022 | 9 | 4 | 3 | 16 | 0 | 225 | 95 | 2 | 1 | true | true | false | false | false | true | negative |
73,809,359 | "FirebaseAuth.instance.currentUser.displayName" returns multiple usernames | <p>the currentUser.displayName returns all the users previously logged in the emulator, i have even logged them out using "await FirebaseAuth.instance.signOut();"</p> | the currentUser.displayName returns all the users previously logged in the emulator, i have even logged them out using "await FirebaseAuth.instance.signOut();" | android|flutter|firebase | 0 | 2022-09-22T04:29:06.967Z | 2,022 | 9 | 4 | 3 | 24 | 0 | 169 | 74 | 3 | 0 | false | true | false | false | false | false | zero |
73,809,469 | React Native CheckBox in FlatList: | <p>I am using import CheckBox from '@react-native-community/checkbox';.</p>
<p>I am only able to 'select' each 'item' once and cannot toggle it (change or re-toggle).</p>
<pre><code>import CheckBox from '@react-native-community/checkbox';
function newrenderItemdata({item, index}) {
const json = JSON.parse(item.produ... | I am using import CheckBox from '@react-native-community/checkbox';. I am only able to 'select' each 'item' once and cannot toggle it (change or re-toggle). [CODE] | android|ios|react-native|checkbox | 0 | 2022-09-22T04:46:27.593Z | 2,022 | 9 | 4 | 3 | 41 | 1 | 163 | 34 | 4 | 1 | true | false | false | false | false | false | zero |
73,809,567 | React-Native for Mobile | <p>error Failed to install the app. Make sure you have the Android development environment set up: <a href="https://reactnative.dev/docs/environment-setup" rel="nofollow noreferrer">https://reactnative.dev/docs/environment-setup</a>. Run CLI wit
h --verbose flag for more details.
Error: Command failed: gradlew.bat app:... | error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup . Run CLI wit h --verbose flag for more details. Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081 [Fatal Error] gradle-3.1.4.pom:7:3: The elem... | android|reactjs|gradle|react-native-flatlist|gradlew | 0 | 2022-09-22T05:02:38.177Z | 2,022 | 9 | 5 | 3 | 21 | 1 | 590 | 23 | 5 | 0 | false | false | false | false | false | false | zero |
73,809,595 | Get Contact from WhatsApp account in Android Oppo device having Android 10 | <p>I am trying to get contacts having WhatsApp using below code</p>
<pre><code>final String[] PROJECTION = {
ContactsContract.Data.CONTACT_ID,
ContactsContract.Data.DISPLAY_NAME,
ContactsContract.Data.DATA1,
ContactsContract.RawContacts.ACC... | I am trying to get contacts having WhatsApp using below code [CODE] Its working fine in all android version and devices except OPPO devices having android Version 10, in this devices cursor always returns count 0 or 1 , 2 in some cases. I need help to understand the root cause of this issue, why this is not working in ... | android|whatsapp|android-contacts|android-10.0|oppo | 0 | 2022-09-22T05:08:11.953Z | 2,022 | 9 | 5 | 3 | 13 | 0 | 359 | 74 | 5 | 1 | true | true | false | false | false | false | zero |
73,809,605 | Easy Camera Perm? | <h1>Android easy camera permission</h1>
<h1>build.gradle</h1>
<p>AndroidX camera dependencies, should be added to build.gradle dependencies {} section, like usual libraries</p>
<pre><code>implementation 'androidx.camera:camera-view:1.1.0'
implementation 'androidx.camera:camera-core:1.1.0'
implementation 'androidx.camer... | Android easy camera permission build.gradle AndroidX camera dependencies, should be added to build.gradle dependencies {} section, like usual libraries [CODE] Camera.kt Simple AndroidX camera preview, uses AndroidView to insert View as Compose element [CODE] MainActivity.kt Checking permission on activity start, if not... | android|permissions|camera | -1 | 2022-09-22T05:09:48.460Z | 2,022 | 9 | 5 | 3 | 14 | 0 | 385 | 17 | 3 | 3 | true | true | false | false | false | true | negative |
73,809,608 | Hiding the navigation bar and date in Compose preview | <p>I have the following layout built with Jetpack Compose (which is one of the default generated layouts):</p>
<pre><code>class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
ComposeTest1Theme {
... | I have the following layout built with Jetpack Compose (which is one of the default generated layouts): [CODE] The preview looks like so: I was wondering how you would be able to hide the date bar and the navigation bar in Compose previews with the @Preview annotation and whether or not this is currently possible: I tr... | android|kotlin|android-jetpack-compose|android-jetpack | 0 | 2022-09-22T05:10:21.730Z | 2,022 | 9 | 5 | 3 | 29 | 1 | 516 | 53 | 4 | 1 | true | false | false | false | false | false | zero |
73,809,697 | Network response time for API call - Native httpClient vs WebView | <p>Our analysis team recently completed analysis. They came with analysis, when we call <code>API</code> via <code>httpClient</code> for native app, request & response time is more, in comparison to when we load <code>web-view</code> using same <code>API</code> within mobile app.
We don't have any clue why it's hap... | Our analysis team recently completed analysis. They came with analysis, when we call API via httpClient for native app, request & response time is more, in comparison to when we load web-view using same API within mobile app. We don't have any clue why it's happening. Few factor which we observed that, native app API h... | android|ios|react-native|api|webview | 0 | 2022-09-22T05:26:51.283Z | 2,022 | 9 | 5 | 3 | 22 | 0 | 559 | 65 | 5 | 0 | false | true | false | false | false | false | zero |
73,809,824 | REQUEST_INSTALL_PACKAGES | <p>Status: Approved with Issues - Further Action Required
We found issues with your app. You need to review and take action as described below, so that your app is not impacted in the future.</p>
<p>Issue found: Use of permission is not directly related to the core purpose of the app.
We found that your app is not comp... | Status: Approved with Issues - Further Action Required We found issues with your app. You need to review and take action as described below, so that your app is not impacted in the future. Issue found: Use of permission is not directly related to the core purpose of the app. We found that your app is not compliant with... | android|flutter|installation|request|console | -1 | 2022-09-22T05:43:24.290Z | 2,022 | 9 | 5 | 3 | 66 | 2 | 1,682 | 24 | 5 | 0 | false | false | false | false | false | true | negative |
73,809,875 | How to get free Internet access using shadowsocks | <p>I tried to get free Internet access using shadowsocks and after doing all the necessary things there was outbound but no inbound in my shadowsocks so please help me i am a college student in Northern Africa and at this point of time Internet is very necessary for me so please help</p> | I tried to get free Internet access using shadowsocks and after doing all the necessary things there was outbound but no inbound in my shadowsocks so please help me i am a college student in Northern Africa and at this point of time Internet is very necessary for me so please help | android-internet | -4 | 2022-09-22T05:50:55.913Z | 2,022 | 9 | 5 | 3 | 21 | 0 | 281 | 49 | 1 | 0 | false | true | false | false | false | true | negative |
73,809,900 | Unresolved reference BuildConfig.field | <p>I'm working on a multi-module project. In a module called <strong>network</strong> I'm providing the instance of Retrofit through Hilt dependency injection and works fine, I can compile the app, and run unit and instrumentation tests but when I try to execute all unit tests from the terminal as <code>.\gradlew test<... | I'm working on a multi-module project. In a module called network I'm providing the instance of Retrofit through Hilt dependency injection and works fine, I can compile the app, and run unit and instrumentation tests but when I try to execute all unit tests from the terminal as .\gradlew test then this error appears: [... | android|gradle|android-testing|android-multi-module | 0 | 2022-09-22T05:54:16.457Z | 2,022 | 9 | 5 | 3 | 21 | 0 | 571 | 38 | 4 | 3 | true | true | false | false | false | false | zero |
73,809,939 | How do i find corresponding user using the userid in reviews in firebase rtdb | <p>I want to fetch corresponding user data from the path users/ after fetching the reviews to a recyclerview</p>
<p>So I have done the 2nd part that all review data is fetched on the list map and ready to display on RecyclerView.</p>
<p>But before that, I need to fetch Username and Userpicture from path users/ (not all... | I want to fetch corresponding user data from the path users/ after fetching the reviews to a recyclerview So I have done the 2nd part that all review data is fetched on the list map and ready to display on RecyclerView. But before that, I need to fetch Username and Userpicture from path users/ (not all of them but the ... | java|android|firebase|google-cloud-platform|firebase-realtime-database | 0 | 2022-09-22T05:58:23.767Z | 2,022 | 9 | 5 | 3 | 17 | 1 | 731 | 77 | 5 | 0 | false | false | false | false | false | false | zero |
73,809,979 | TabLayout state is lost after navigating to other pages in navigation controller android | <p>I am facing an issue with the navigation controller where I have a ViewPager2 inside one of the fragments of the navigation controller, and when I navigation to the page the first time, it's working perfectly, but whenever I try to navigate to the other pages and navigate back to this page it's messing up the tab la... | I am facing an issue with the navigation controller where I have a ViewPager2 inside one of the fragments of the navigation controller, and when I navigation to the page the first time, it's working perfectly, but whenever I try to navigate to the other pages and navigate back to this page it's messing up the tab layou... | android|android-tablayout|android-architecture-navigation|android-viewpager2|android-bottomnavigationview | 0 | 2022-09-22T06:01:55Z | -1 | -1 | -1 | -1 | 11 | 0 | 535 | 88 | 5 | 0 | false | true | false | false | false | false | zero |
73,809,993 | OPENGL ES API's to change between multiple framebuffers (Android 9) | <p>Working on IMX6 platform and want to create Native framebuffer window for my application. In case of Android Marshmallow it is possible using function call "android_createDisplaySurface()" of "android-6.0.1_r22/frameworks/native/libs/ui/FramebufferNativeWindow.cpp" .</p>
<p>But latest Android rel... | Working on IMX6 platform and want to create Native framebuffer window for my application. In case of Android Marshmallow it is possible using function call "android_createDisplaySurface()" of "android-6.0.1_r22/frameworks/native/libs/ui/FramebufferNativeWindow.cpp" . But latest Android release of An... | opengl-es-2.0|framebuffer|android-9.0-pie|imx6|nxp-microcontroller | 0 | 2022-09-22T06:04:08.790Z | 2,022 | 9 | 6 | 3 | 10 | 0 | 451 | 67 | 5 | 0 | false | true | false | false | false | false | zero |
73,810,040 | Enable Cursor and long tap copy/paste feature in EditText view for custom Keyboard | <p>I developed my own keyboard for typing Urdu text, but there is an issue when I disable the default soft keyboard then.</p>
<ol>
<li>Cursor on EditText will disappear.</li>
<li>Unable to Tab on EditText and remove the word from mid of EditText.</li>
<li>When I enable the cursor on EditText, then both keyboards (layou... | I developed my own keyboard for typing Urdu text, but there is an issue when I disable the default soft keyboard then. Cursor on EditText will disappear. Unable to Tab on EditText and remove the word from mid of EditText. When I enable the cursor on EditText, then both keyboards (layoutKeyboard and default soft keyboar... | android|android-edittext|android-keypad|android-search | 0 | 2022-09-22T06:09:42.093Z | 2,022 | 9 | 6 | 3 | 8 | 0 | 588 | 82 | 4 | 1 | true | true | false | false | false | false | zero |
73,810,054 | java.lang.UnsatisfiedLinkError: No implementation found in library module | <p>I am trying to build a library(sdk/aar) which uses native code within library. But I am getting error like '<strong>java.lang.UnsatisfiedLinkError: No implementation found</strong>' for my native functions declared in library class.</p>
<pre><code>package com.abc.android.count_ai
class CountActivity : BaseActivity(... | I am trying to build a library(sdk/aar) which uses native code within library. But I am getting error like ' java.lang.UnsatisfiedLinkError: No implementation found ' for my native functions declared in library class. [CODE] App works file if I put all library code into main module. But if I put cpp code and android co... | java|android|c++|android-ndk | 0 | 2022-09-22T06:11:11.717Z | 2,022 | 9 | 6 | 3 | 29 | 0 | 718 | 73 | 4 | 3 | true | true | false | false | false | false | zero |
73,810,071 | Is it possible to use Invisible Captcha or Checkbox Captcha in Android? | <p>As I see <a href="https://www.google.com/recaptcha/intro/android.html?type=98" rel="nofollow noreferrer">here</a> , it is possible to make invisible or checkbox captcha but I implemented SafetyNet reCaptcha API and I only see captcha verification using the popup challenges. How this type of captcha can be used in An... | As I see here , it is possible to make invisible or checkbox captcha but I implemented SafetyNet reCaptcha API and I only see captcha verification using the popup challenges. How this type of captcha can be used in Android? | android|recaptcha|invisible-recaptcha|safetynet-api | 0 | 2022-09-22T06:12:48.067Z | 2,022 | 9 | 6 | 3 | 20 | 0 | 223 | 71 | 4 | 0 | false | true | false | false | false | false | zero |
73,810,103 | Android Databinding in 2xml files | <p>How can I bind 2xml files using databinding?
how to provide data in textview of paymentbillingelement using viewmodel setValue property??</p>
<pre><code><layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools=&q... | How can I bind 2xml files using databinding? how to provide data in textview of paymentbillingelement using viewmodel setValue property?? [CODE] | java|android|mvvm|viewmodel | 0 | 2022-09-22T06:15:57.357Z | 2,022 | 9 | 6 | 3 | 19 | 1 | 144 | 33 | 4 | 1 | true | false | false | false | false | false | zero |
73,810,188 | Kotlin: Why am I getting a compile error cannot find a parameter for modifier and contentScale? | <p>I am getting the error messages "Cannot find a parameter with this name: modifier" and "Cannot find a parameter with this name: contentScale". The compiler is not giving me an option to import anything when I hover on the parameters. How can I resolve this?</p>
<pre><code>@Composable
fun Birthday... | I am getting the error messages "Cannot find a parameter with this name: modifier" and "Cannot find a parameter with this name: contentScale". The compiler is not giving me an option to import anything when I hover on the parameters. How can I resolve this? [CODE] | android|kotlin|kotlin-android-extensions | 0 | 2022-09-22T06:24:43.657Z | 2,022 | 9 | 6 | 3 | 25 | 2 | 284 | 95 | 3 | 1 | true | false | false | false | false | false | zero |
73,810,218 | How to avoid first callback of livedata after register observer? | <p>This is a chatting app and I am using LiveData to observe new updated messages on Firebase Realtime Database.
but when I open its activity, LiveData was called and the last message in Firebase Realtime Databaseadded to the message list in the activity even though any message in Firebase Realtime Database was not add... | This is a chatting app and I am using LiveData to observe new updated messages on Firebase Realtime Database. but when I open its activity, LiveData was called and the last message in Firebase Realtime Databaseadded to the message list in the activity even though any message in Firebase Realtime Database was not added.... | android|firebase|kotlin|google-cloud-platform|firebase-realtime-database | 2 | 2022-09-22T06:28:37.817Z | 2,022 | 9 | 6 | 3 | 54 | 1 | 789 | 64 | 5 | 3 | true | false | false | false | false | false | low |
73,810,303 | why doesn't spancount work and glide size can't change | <p>I want to change the spancount to 2 but the default spancount is 1, I've also tried changing the glide size but nothing has changed. and when run, the spancount will only remain one but the layout has become 2. please help, I really need this thank you</p>
<p>this is code adapter</p>
<pre><code>class MakeUpAdapter (... | I want to change the spancount to 2 but the default spancount is 1, I've also tried changing the glide size but nothing has changed. and when run, the spancount will only remain one but the layout has become 2. please help, I really need this thank you this is code adapter [CODE] this is code xml, i wrapped recyclervie... | android-recyclerview|android-glide|gridlayoutmanager | 0 | 2022-09-22T06:37:25.670Z | 2,022 | 9 | 6 | 3 | 37 | 0 | 984 | 54 | 3 | 2 | true | true | false | false | false | false | zero |
73,810,358 | What are the difference between AIDL and HAL? | <p>Can someone tell me that what is the differences between AIDL over HAL?
It is too much confusing for me.</p> | Can someone tell me that what is the differences between AIDL over HAL? It is too much confusing for me. | android | 0 | 2022-09-22T06:42:51.463Z | 2,022 | 9 | 6 | 3 | 28 | 1 | 104 | 45 | 1 | 0 | false | false | false | false | false | false | zero |
73,810,361 | Plugin AddInstanceForFactory: No factory registered for id issue | <p>My App is perfectly running in Android Emulator but when i run my app in IOS emulator, red screen shows up with this message. And in the terminal it showing [plugin] AddInstanceForFactory: No factory registered for id issue</p>
<p><a href="https://i.stack.imgur.com/VtxTj.png" rel="nofollow noreferrer"><img src="http... | My App is perfectly running in Android Emulator but when i run my app in IOS emulator, red screen shows up with this message. And in the terminal it showing [plugin] AddInstanceForFactory: No factory registered for id issue | android|ios|swift|flutter | 0 | 2022-09-22T06:43:03.300Z | 2,022 | 9 | 6 | 3 | 22 | 1 | 223 | 64 | 4 | 0 | false | false | false | false | false | false | zero |
73,810,384 | How to include Jars and aars in Android.bp file? Java | <p>In the Aosp module there we can see some prebuilt jars like annotations.jar.
I need to import them in my project using BP file.
Please help me to do that.....
Thanks in advance!!</p> | In the Aosp module there we can see some prebuilt jars like annotations.jar. I need to import them in my project using BP file. Please help me to do that..... Thanks in advance!! | android|android-source|blueprint | 0 | 2022-09-22T06:45:02.577Z | 2,022 | 9 | 6 | 3 | 16 | 0 | 178 | 53 | 3 | 0 | false | true | false | false | false | false | zero |
73,810,385 | Workout Movement Counting using google_ml_kit flutter | <p>I am creating a app using</p>
<blockquote>
<p>google_ml_kit</p>
</blockquote>
<p>to create face recognition. I have successfully implemented the face recognition using <strong>flutter(front end),node js(back end) and mongo database</strong>. now I have to create Workout Movement Counting example(dumbbell count). can... | I am creating a app using google_ml_kit to create face recognition. I have successfully implemented the face recognition using flutter(front end),node js(back end) and mongo database . now I have to create Workout Movement Counting example(dumbbell count). can anyone please let me know it is possible with google_ml_kit... | android|ios|flutter|flutter-dependencies|google-mlkit | 0 | 2022-09-22T06:45:03.493Z | 2,022 | 9 | 6 | 3 | 24 | 1 | 408 | 53 | 5 | 0 | false | false | false | false | false | false | zero |
73,810,460 | AtomicInteger is not atomic, and Locks don't work either in Android's framework.jar | <p>I used the ASM framework to instrument <code>framework-minus-apex.jar</code> in AOSP of Android 11 and 12. The instrumented code collects method invocation information and writes a trace to a file. The instrumentation is successful and the phone with the instrumented <code>frameowork.jar</code> can boot. The problem... | I used the ASM framework to instrument framework-minus-apex.jar in AOSP of Android 11 and 12. The instrumented code collects method invocation information and writes a trace to a file. The instrumentation is successful and the phone with the instrumented frameowork.jar can boot. The problem is, the AtomicInteger I used... | java|android|concurrency|java.util.concurrent|instrumentation | -1 | 2022-09-22T06:52:10.653Z | 2,022 | 9 | 6 | 3 | 33 | 0 | 781 | 83 | 5 | 2 | true | true | false | false | false | true | negative |
73,810,484 | Manifest merger failed : android:exported needs to be explicitly specified for element <activity#com.firebase.ui.auth.ui.provider.GitHubLoginActivity> | <p>I have upgraded to sdk 33 then this popus up</p>
<p>Manifest merger failed : android:exported needs to be explicitly specified for element <activity#com.firebase.ui.auth.ui.provider.GitHubLoginActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for <code>android:exported</... | I have upgraded to sdk 33 then this popus up Manifest merger failed : android:exported needs to be explicitly specified for element <activity#com.firebase.ui.auth.ui.provider.GitHubLoginActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding ... | android | 1 | 2022-09-22T06:55:02.157Z | 2,022 | 9 | 6 | 3 | 33 | 1 | 530 | 150 | 1 | 2 | true | false | false | false | false | false | low |
73,810,585 | uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, | <p>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.android.com/about/versions/12/behavior-changes-12#exported</p>
<p>I ... | 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.android.com/about/versions/12/behavior-changes-12#exported I am using R... | android|react-native|google-play | 0 | 2022-09-22T07:05:58.577Z | 2,022 | 9 | 7 | 3 | 36 | 1 | 886 | 126 | 3 | 2 | true | false | false | false | false | false | zero |
73,810,592 | Shared version number in TOML files | <p>I'm starting to use the catalog version (toml files) in order to manage my dependencies.
But I have a problem, I want to have different toml files (three) and some of the dependencies in different toml files has same version, I don't want to create duplicate version number in each toml files, I want to share verion ... | I'm starting to use the catalog version (toml files) in order to manage my dependencies. But I have a problem, I want to have different toml files (three) and some of the dependencies in different toml files has same version, I don't want to create duplicate version number in each toml files, I want to share verion num... | android|android-studio|gradle|gradle-dependencies | 0 | 2022-09-22T07:06:37.073Z | 2,022 | 9 | 7 | 3 | 13 | 0 | 428 | 35 | 4 | 0 | false | true | false | false | false | false | zero |
73,810,607 | SignalR not working in Android App (with Nginx reverse proxy) | <p>We have a mobile application (iOS & Android) that makes real-time communication with our API through SignalR.</p>
<p>There is one single case where the SignalR Hubs were not functioning in a platform where Nginx was used as a reverse proxy. We found and applied the "X-Accel-Buffering: no" http header s... | We have a mobile application (iOS & Android) that makes real-time communication with our API through SignalR. There is one single case where the SignalR Hubs were not functioning in a platform where Nginx was used as a reverse proxy. We found and applied the "X-Accel-Buffering: no" http header solution as def... | android|nginx|signalr|signalr-hub | 1 | 2022-09-22T07:07:40.960Z | 2,022 | 9 | 7 | 3 | 22 | 0 | 484 | 61 | 4 | 0 | false | true | false | false | false | false | low |
73,810,618 | Code generator has deoptimised the styling in react-native | <p>I am getting this after my react native build is successful :</p>
<blockquote>
<p>transform[stderr]: [BABEL] Note: The code generator has deoptimised
the styling of /Users/myName/Desktop/mool_mobile/unknown as it exceeds
the max of 500KB.</p>
</blockquote>
<p>In the emulator the splash screen shows up for 1 minute o... | I am getting this after my react native build is successful : transform[stderr]: [BABEL] Note: The code generator has deoptimised the styling of /Users/myName/Desktop/mool_mobile/unknown as it exceeds the max of 500KB. In the emulator the splash screen shows up for 1 minute or so and then it eventually crashes. Couldn'... | android|ios|react-native|babeljs | 0 | 2022-09-22T07:08:38.323Z | 2,022 | 9 | 7 | 3 | 19 | 1 | 382 | 58 | 4 | 0 | false | false | false | false | false | false | zero |
73,810,668 | Navigate from nested fragment? | <p>If I have 2 nasted navigation fragment (inner and outer) how can I navigate to outer fragment distanation from inner fragment the right way (in outer fragment area)?</p>
<p>The code looks exactly like this sample
<a href="https://github.com/ubuntudroid/NestedNavigationSample" rel="nofollow noreferrer">https://github... | If I have 2 nasted navigation fragment (inner and outer) how can I navigate to outer fragment distanation from inner fragment the right way (in outer fragment area)? The code looks exactly like this sample https://github.com/ubuntudroid/NestedNavigationSample All I came up with was pass the controller of outer fragment... | android|kotlin|navigation | 0 | 2022-09-22T07:14:18.027Z | 2,022 | 9 | 7 | 3 | 27 | 0 | 330 | 30 | 3 | 0 | false | true | false | false | false | false | zero |
73,810,686 | Android Studio Dolphin: Failed to initialize editor | <p>After updating android studio I can't open editor section. (Android Studio Dolphin)</p>
<p><strong>I tried</strong></p>
<ul>
<li>Invalidate caches and restart.</li>
<li>Deleted the /.gradle & /.idea files</li>
</ul>
<hr />
<p><a href="https://i.stack.imgur.com/XQ1T2.png" rel="nofollow noreferrer"><img src="https... | After updating android studio I can't open editor section. (Android Studio Dolphin) I tried Invalidate caches and restart. Deleted the /.gradle & /.idea files | android|android-studio|intellij-idea | 1 | 2022-09-22T07:15:58.560Z | 2,022 | 9 | 7 | 3 | 33 | 0 | 158 | 51 | 3 | 0 | false | true | false | false | false | false | low |
73,810,771 | How can I apply the same attributes to different viewpagers | <p>In my main activity, I currently have 3 viewpager2 with the same attributes. I implemented it by repeating the same block of codes but it looks too messy. Is there a better way to implement these attributes without the repetition? is it possible to use another class?</p>
<pre><code>private void setupRecommendViewPag... | In my main activity, I currently have 3 viewpager2 with the same attributes. I implemented it by repeating the same block of codes but it looks too messy. Is there a better way to implement these attributes without the repetition? is it possible to use another class? [CODE] | java|android | 0 | 2022-09-22T07:23:24.610Z | 2,022 | 9 | 7 | 3 | 26 | 1 | 274 | 59 | 2 | 1 | true | false | false | false | false | false | zero |
73,810,817 | Unable to create android application to Create,Destroy channels on Amazon IVS | <p>I want to create an android application, to <strong>create,destroy and add participants to, an Amazon IVS channel</strong> from the app but I am unsure about the API endpoints that would be required.<br /></p>
<p>I started creating channel using this <a href="https://docs.aws.amazon.com/ivs/latest/APIReference/API_C... | I want to create an android application, to create,destroy and add participants to, an Amazon IVS channel from the app but I am unsure about the API endpoints that would be required. I started creating channel using this page and using API endpoints from this page But I keep getting response code as 403 or 401 : Here i... | android|amazon-cloudformation|aws-api-gateway|amazon-ivs | 0 | 2022-09-22T07:27:13.120Z | 2,022 | 9 | 7 | 3 | 8 | 0 | 828 | 77 | 4 | 6 | true | true | false | false | false | false | zero |
73,810,915 | Android system close application after battery low | <p>there.</p>
<p>I've create simple application for Samsung Wear Watch 4, which has MainActivity => MainFragment, LifecycleService.</p>
<p>MainActivity:</p>
<pre><code>class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundl... | there. I've create simple application for Samsung Wear Watch 4, which has MainActivity => MainFragment, LifecycleService. MainActivity: [CODE] MainFragment: [CODE] Service: [CODE] It works fine until battery low and telephone switch off After charge battery and run application it starts service but than system closes a... | android|kotlin|watch | 0 | 2022-09-22T07:36:53.477Z | 2,022 | 9 | 7 | 3 | 31 | 0 | 466 | 50 | 3 | 3 | true | true | false | false | false | false | zero |
73,811,021 | error: /Users/mcl-0048/Desktop/Conexus/ios/ios: No such file or directory (in target 'Conexus' from project 'Conexus') | <p>Hello guys i am getting this error when i am trying to run the project in iOS from workspace file <a href="https://i.stack.imgur.com/aaqwK.jpg" rel="nofollow noreferrer">enter image description here</a>.</p>
<p>Please do let me know any solutions for this problem i am stuck in it
My Project Configuration is this :
P... | Hello guys i am getting this error when i am trying to run the project in iOS from workspace file enter image description here . Please do let me know any solutions for this problem i am stuck in it My Project Configuration is this : Pod file require_relative '../node_modules/react-native/scripts/react_native_pods' req... | javascript|android|ios|react-native | 0 | 2022-09-22T07:48:05.983Z | 2,022 | 9 | 7 | 3 | 14 | 0 | 1,940 | 118 | 4 | 0 | false | true | false | false | false | false | zero |
73,811,047 | An error occurred while trying to connect the client | <pre class="lang-cs prettyprint-override"><code>public async void OnButtonClicked(object sender, EventArgs e)
{
try
{
const string topic = "test/test/button";
var config = new MqttConfiguration {
Port = 1883,
KeepAliveSecs = 60,
WaitTimeoutSecs = ... | [CODE] I can't connect to the MQTT client but i dont know why... Error Message : System.Net.Mqtt.MqttClientException: 'An error occurred while trying to connect the client ' The Whole Exception Object: System.Net.Mqtt.MqttClientException: The client 324ascsaf689as97dc67asd69dsa has been disconnected while trying to per... | c#|xamarin|xamarin.forms|xamarin.android|mqtt | -1 | 2022-09-22T07:50:05.620Z | 2,022 | 9 | 7 | 3 | 55 | 0 | 872 | 52 | 5 | 1 | true | true | false | false | false | true | negative |
73,811,147 | GeoJson properties does not show on Android | <pre><code> {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"marker-color": "#e010cf",
"marker-size": "medium",
... | [CODE] I want to use the GeoJSON marker-color in my Android app to be the #e010cf color, but it's show the default color, why doesn't my google map show the color I want? Is it because android Google map can't read the marker-color property in geojson? [CODE] In addition, such a setting style is not what I want, is the... | android|google-maps|geojson | 0 | 2022-09-22T07:58:21.997Z | 2,022 | 9 | 7 | 3 | 16 | 0 | 451 | 43 | 3 | 2 | true | true | false | false | false | false | zero |
73,811,221 | Receiving a shared URL from another app into my Android app not working | <p>I am new to Android app development. I am trying to make an app which does the following:</p>
<ol>
<li>I open my app</li>
<li>I leave my app and keep it running in the background</li>
<li>I share a link to my app from another app (I tried YouTube)</li>
<li>My app displays the link on its TextView.</li>
</ol>
<p>And ... | I am new to Android app development. I am trying to make an app which does the following: I open my app I leave my app and keep it running in the background I share a link to my app from another app (I tried YouTube) My app displays the link on its TextView. And I am following this guide: https://developer.android.com/... | java|android|android-layout|android-intent | 0 | 2022-09-22T08:04:53.480Z | 2,022 | 9 | 8 | 3 | 43 | 1 | 1,262 | 71 | 4 | 4 | true | false | false | false | false | false | zero |
73,811,258 | Is there a unix signal that corresponds to process death in Android? | <p>I'm trying to catch a Unix signal to identify a process death i.e the user removed the app from recents.
Tried to catch <code>SIGTERM</code> but it seems unrelated to the matter.
So, which Unix signal can be caught for a case like this one ?</p> | I'm trying to catch a Unix signal to identify a process death i.e the user removed the app from recents. Tried to catch SIGTERM but it seems unrelated to the matter. So, which Unix signal can be caught for a case like this one ? | android|unix|android-ndk | 0 | 2022-09-22T08:07:53.933Z | 2,022 | 9 | 8 | 3 | 13 | 0 | 228 | 68 | 3 | 0 | false | true | false | false | false | false | zero |
73,811,560 | Xamarin Android native HttpClient throwing exceptions though internet is available on device | <p>I have this weird error my users are facing randomly.
Sometimes, when users install my app, and the app calls our API, the android http client just throws this weird exception:</p>
<pre><code>\"Exception\": {
\"JniPeerMembers\": {
\"ManagedPeerType\": \"Java.IO.IOException, Mono.... | I have this weird error my users are facing randomly. Sometimes, when users install my app, and the app calls our API, the android http client just throws this weird exception: [CODE] } The internet connection on the Android device is active, and the API is live and accessible at the moment of the query. I don't unders... | android|xamarin.android|httpclient|okhttp | 0 | 2022-09-22T08:30:50.173Z | 2,022 | 9 | 8 | 3 | 19 | 1 | 383 | 92 | 4 | 1 | true | false | false | false | false | false | zero |
73,811,607 | Hold and move using adb | <p>Could we simulate the hold and move behavior using adb?</p>
<p>Just like pick a app from the app view and move to specific position on the screen?</p>
<p>Thanks</p> | Could we simulate the hold and move behavior using adb? Just like pick a app from the app view and move to specific position on the screen? Thanks | android|adb | 0 | 2022-09-22T08:34:19.480Z | 2,022 | 9 | 8 | 3 | 25 | 1 | 146 | 23 | 2 | 0 | false | false | false | false | false | false | zero |
73,811,679 | E/JavaBinder: !!! FAILED BINDER TRANSACTION !!! (parcel size = 324) | <p>I'm working with firebase and i'm trying to click the login button but the home page doesn't show up it just says "please waiting!!!" run forever like:
<a href="https://i.stack.imgur.com/6zOD4.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/6zOD4.png" alt="enter image description here" ... | I'm working with firebase and i'm trying to click the login button but the home page doesn't show up it just says "please waiting!!!" run forever like: . I can't find a solution to fix it. Help me please. My realtime Database: https://drive.google.com/file/d/1ckzM7NitXdPKGdIG6dbAv0IWhl1WgtZk/view?usp=sharing ... | java|android|firebase-realtime-database | 0 | 2022-09-22T08:39:20.560Z | 2,022 | 9 | 8 | 3 | 27 | 0 | 364 | 67 | 3 | 2 | true | true | false | false | false | false | zero |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.