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,780,244 | Release apk login working But Google SIgn In Not Working in .aab file after release version | <p>Release apk login working But google SIgn In Not working in aab file after release version. please help</p> | Release apk login working But google SIgn In Not working in aab file after release version. please help | android|google-signin | 0 | 2022-09-19T23:38:41.233Z | 2,022 | 9 | 23 | 0 | 27 | 0 | 103 | 91 | 2 | 0 | false | true | false | false | false | false | zero |
73,780,273 | Android - Pairing dialog does not appear | <p>I noticed that sometimes when I pair with a BLE device with my phone which is a central device in this case and the BLE device is a sensor which is acting like a peripheral. There are rare instances where I see that no pairing dialog appears on the Android phone asking the user to pair, and that it just pairs succes... | I noticed that sometimes when I pair with a BLE device with my phone which is a central device in this case and the BLE device is a sensor which is acting like a peripheral. There are rare instances where I see that no pairing dialog appears on the Android phone asking the user to pair, and that it just pairs successfu... | android|bluetooth-lowenergy | 0 | 2022-09-19T23:44:26.233Z | 2,022 | 9 | 23 | 0 | 17 | 0 | 369 | 40 | 2 | 0 | false | true | false | false | false | false | zero |
73,780,358 | Filter Weather Forecast By Date throuh OnClickListner android Kotlin | <p>I want to Filter the Weather Forecast By selecting a Particular Date in a 3 hour Forecast Weather, It is pretty simple now today is sep 19 if i click today then it show only sep 19 forecast weather and other details have to hide, that's all.</p>
<p><strong>WeatherActivity.kt</strong></p>
<pre><code>lateinit var mode... | I want to Filter the Weather Forecast By selecting a Particular Date in a 3 hour Forecast Weather, It is pretty simple now today is sep 19 if i click today then it show only sep 19 forecast weather and other details have to hide, that's all. WeatherActivity.kt [CODE] WeatherForecastAdapter.kt [CODE] give me a solution ... | android|kotlin|filter|forecasting|weather | -1 | 2022-09-20T00:02:21.237Z | 2,022 | 9 | 0 | 1 | 9 | 0 | 354 | 68 | 5 | 2 | true | true | false | false | false | true | negative |
73,780,466 | applicationVariants.all {...} in app/build.gradle throws error after enabling new architecture in RN 0.70.1 | <p>I am upgrading React Native app from 0.68.2 to 0.70.1 with gradle 7.3.3. The <code>npx react-native upgrade</code> ran successfully. Then I enabled new architecture by following <a href="https://reactnative.dev/docs/new-architecture-app-intro" rel="nofollow noreferrer">RN doc</a>. However <code>npx react-native run-... | I am upgrading React Native app from 0.68.2 to 0.70.1 with gradle 7.3.3. The npx react-native upgrade ran successfully. Then I enabled new architecture by following RN doc . However npx react-native run-android throws error about an existing applicationVariants.all {...} in android/app/build.gradle : [CODE] Here is the... | android|react-native | 0 | 2022-09-20T00:23:54.350Z | 2,022 | 9 | 0 | 1 | 16 | 0 | 420 | 107 | 2 | 2 | true | true | false | false | false | false | zero |
73,780,599 | A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptExecution because of dagger-2 and kotlin kapt | <pre><code> Execution failed for task ':app:kaptSitPbcomDPDDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptExecution
> java.lang.reflect.InvocationTargetException (no error message)
* Try:
Run with --scan to get full insights.
... | [CODE] These are all the error, I can't find anything useful to it, but previously the error was about dagger-2 not generating annotation and based on my searches it say add these apply plugin: 'kotlin-kapt' then kapt "com.google.dagger:dagger-android-processor:2.43" kapt "com.google.dagger:dagger-compil... | android|kotlin|gradle|dagger-2|kapt | 0 | 2022-09-20T00:54:44.643Z | 2,022 | 9 | 0 | 1 | 24 | 0 | 333 | 121 | 5 | 1 | true | true | false | false | false | false | zero |
73,780,742 | App crash with GC When an object added to firebase - Android Studio | <p>Hello i have an android app</p>
<p>when an update ( Insert new data in firebase or update an attribute ) done in firebase the app will crash for 15-30 sec .</p>
<p>when i checked log , it show that's in that time the GC is working and it's take a lot of time to done his work so the app crashed a lot of time and in ... | Hello i have an android app when an update ( Insert new data in firebase or update an attribute ) done in firebase the app will crash for 15-30 sec . when i checked log , it show that's in that time the GC is working and it's take a lot of time to done his work so the app crashed a lot of time and in the phone you can'... | java|android|firebase|garbage-collection | 0 | 2022-09-20T01:26:08.377Z | 2,022 | 9 | 1 | 1 | 16 | 0 | 596 | 67 | 4 | 2 | true | true | false | false | false | false | zero |
73,780,827 | On Click event Does not working with Data Binding in Android Studio | <p>I am learning <strong>DataBinding</strong> in android studio. But I am facing a problem with binding a ModelView. I want to bind a function with a button on click event. I set a function in the model view. I want to update my text view with on click event of my button. But When I click the button my text is not upd... | I am learning DataBinding in android studio. But I am facing a problem with binding a ModelView. I want to bind a function with a button on click event. I set a function in the model view. I want to update my text view with on click event of my button. But When I click the button my text is not updating. I can not unde... | android|onclick|android-jetpack|android-databinding|model-view | 0 | 2022-09-20T01:44:55.607Z | 2,022 | 9 | 1 | 1 | 27 | 1 | 460 | 67 | 5 | 3 | true | false | false | false | false | false | zero |
73,780,849 | In Kotlin - how can I get location in background mode? | <p>In Kotlin - how can I get location in background mode? Service in not working in background mode. Please help and let me know.</p>
<p>Please let me know, how can I use this code</p>
<p>I have such a service with this code:</p>
<pre><code>import android.app.Service
import android.content.Context
import android.conte... | In Kotlin - how can I get location in background mode? Service in not working in background mode. Please help and let me know. Please let me know, how can I use this code I have such a service with this code: [CODE] [CODE] I call this service with this code [CODE] But the result is not returned to me, the service does ... | android|kotlin|location|background-service | 0 | 2022-09-20T01:50:41.750Z | 2,022 | 9 | 1 | 1 | 36 | 0 | 414 | 54 | 4 | 4 | true | true | false | false | false | false | zero |
73,780,864 | How to flash fusing QCS603 based device | <ul>
<li>Product: <a href="https://www.arrow.com/en/products/eic-ms-vision-500/einfochips-limited" rel="nofollow noreferrer">Vision AI Developer Kit</a></li>
<li>MFG: <a href="https://store.altek.com.tw/product/ai-camera-altek-azure-iot-starter-kit" rel="nofollow noreferrer">Altek TW</a></li>
<li>Sell: Arrow.com / eInf... | Product: Vision AI Developer Kit MFG: Altek TW Sell: Arrow.com / eInfochips Status: Cannot enter EDL mode lsusb detects it as a QCom device 05c6:900e, but adb cannot detect at all and fastboot as well with QFIL, the progress bar does not move and cannot flash fuse Features: no Volume Up/Down buttons like other Android ... | android | 0 | 2022-09-20T01:53:31.873Z | 2,022 | 9 | 1 | 1 | 16 | 0 | 511 | 39 | 1 | 0 | false | true | false | false | false | false | zero |
73,780,882 | Horizontal scroll calendar | <p>can anyone help me or share the code to make a calendar with horizontal scroll in flutter, i'm new to flutter</p> | can anyone help me or share the code to make a calendar with horizontal scroll in flutter, i'm new to flutter | android|android-studio | 0 | 2022-09-20T01:57:55.910Z | 2,022 | 9 | 1 | 1 | 12 | 0 | 109 | 26 | 2 | 0 | false | true | false | false | false | false | zero |
73,780,904 | App or solution to send text from android share menu interface to linux terminal in my home local network | <p>Perhaps it will be some kind of text file on my linux computer in which the text selected by me, for example, in the browser on an android device and transmitted through the share menu will be appended.</p> | Perhaps it will be some kind of text file on my linux computer in which the text selected by me, for example, in the browser on an android device and transmitted through the share menu will be appended. | android|linux | 0 | 2022-09-20T02:01:36.563Z | 2,022 | 9 | 2 | 1 | 9 | 0 | 202 | 105 | 2 | 0 | false | true | false | false | false | false | zero |
73,780,975 | Puzzling MediaCodec.BufferInfo.size values | <p>I use MediaCodec to decode H.264/H.265 video streams. I don't think the code of thousands of lines is relevant to my question, so please allow me to avoid pasting the code here. Let me emphasize that the decoding works flawlessly. I am asking this question primarily out of curiosity, not for solving a problem.</p>
<... | I use MediaCodec to decode H.264/H.265 video streams. I don't think the code of thousands of lines is relevant to my question, so please allow me to avoid pasting the code here. Let me emphasize that the decoding works flawlessly. I am asking this question primarily out of curiosity, not for solving a problem. [CODE] T... | android-mediacodec | 0 | 2022-09-20T02:18:25.593Z | 2,022 | 9 | 2 | 1 | 7 | 0 | 822 | 42 | 1 | 1 | true | true | false | false | false | false | zero |
73,780,992 | Blank map when using open-street-maps | <p>I'm trying to use open street maps tile server with <a href="https://github.com/react-native-maps/react-native-maps" rel="nofollow noreferrer">react-native-maps</a> in an expo app. But, with any tile url, for example: <a href="http://c.tile.openstreetmap.org/%7Bz%7D/%7Bx%7D/%7By%7D.png" rel="nofollow noreferrer">htt... | I'm trying to use open street maps tile server with react-native-maps in an expo app. But, with any tile url, for example: http://c.tile.openstreetmap.org/{z}/{x}/{y}.png I got only a blank screen [CODE] obs: Map works fine when using google provider | android|react-native|expo|react-native-maps | 1 | 2022-09-20T02:22:06.493Z | 2,022 | 9 | 2 | 1 | 16 | 0 | 250 | 37 | 4 | 1 | true | true | false | false | false | false | low |
73,780,997 | How to paint on a video frame by frame and save it using flutter? | <p>The goal is to analyse a video frame by frame and apply a painting on each of those frames. Then save the video and be able to play it.</p>
<p>Do you know if such a thing is possible in flutter? I've heard about ffmpeg package but I'm not too sure if that's possible with it.</p> | The goal is to analyse a video frame by frame and apply a painting on each of those frames. Then save the video and be able to play it. Do you know if such a thing is possible in flutter? I've heard about ffmpeg package but I'm not too sure if that's possible with it. | android|ios|flutter|ffmpeg|video-editing | 0 | 2022-09-20T02:23:00.503Z | 2,022 | 9 | 2 | 1 | 31 | 1 | 268 | 65 | 5 | 0 | false | false | false | false | false | false | zero |
73,781,078 | How to get specific column from android room db? | <p>I tried to get columns through column names in DAO, but it didn't work.</p>
<pre><code>@Query("SELECT :columnName FROM info_table")
suspend fun getItem(columnName: String): List<Any>
</code></pre>
<p>I have so many columns so It is not proper approach.</p>
<pre><code>@Query("SELECT TIME FROM inf... | I tried to get columns through column names in DAO, but it didn't work. [CODE] I have so many columns so It is not proper approach. [CODE] So How can i deal with it? | android|android-room|dao | 0 | 2022-09-20T02:39:11.193Z | 2,022 | 9 | 2 | 1 | 33 | 1 | 165 | 48 | 3 | 2 | true | false | false | false | false | false | zero |
73,781,157 | I want to create a check-in macro in an android app using python | <p>guys.
I've been trying to do a task lately and it have been harder than I thought.
I want to create a check-in macro in an android app using python.
I have thought about three ways:</p>
<ol>
<li>Simulating android in a python enviroment.</li>
<li>Use a website that runs a simulated android and use python to navigate... | guys. I've been trying to do a task lately and it have been harder than I thought. I want to create a check-in macro in an android app using python. I have thought about three ways: Simulating android in a python enviroment. Use a website that runs a simulated android and use python to navigate through this site. But I... | python|android|macros | 0 | 2022-09-20T02:54:23.783Z | 2,022 | 9 | 2 | 1 | 8 | 0 | 602 | 64 | 3 | 0 | false | true | false | false | false | false | zero |
73,781,192 | How to perform multi touch using Culebratester-Client? | <p>I've succeeded to perform a quick tap using <a href="https://github.com/dtmilano/CulebraTester2-client" rel="nofollow noreferrer">Culebra-Client</a> by following code from this stackoverflow <a href="https://stackoverflow.com/a/72268342/236465">answer</a>. But I still don't understand how to perform multiple touch<... | I've succeeded to perform a quick tap using Culebra-Client by following code from this stackoverflow answer . But I still don't understand how to perform multiple touch | python|android|adb|androidviewclient | 0 | 2022-09-20T03:02:35.950Z | 2,022 | 9 | 3 | 1 | 22 | 0 | 168 | 54 | 4 | 0 | false | true | false | false | false | false | zero |
73,781,237 | How to fix ':app:checkDebugDuplicateClasses' error in flutter | <p>How can I fix this logcat error in flutter when i added local_auth: ^2.1.2 to my project</p>
<pre><code>Execution failed for task ':app:checkDebugDuplicateClasses'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
> Duplicate class androidx.lifecycle.ViewM... | How can I fix this logcat error in flutter when i added local_auth: ^2.1.2 to my project [CODE] Here is the kotlin plugin added by default in the build gradle file [CODE] So i can,t really tell where the error is coming from i have tried to clean, rebuild the project and also invalidate and restart andriod studio but t... | android|flutter|kotlin | 0 | 2022-09-20T03:09:41.687Z | 2,022 | 9 | 3 | 1 | 31 | 1 | 391 | 61 | 3 | 2 | true | false | false | false | false | false | zero |
73,781,247 | How can I read the light sensor of my phone using python? | <p>I'm trying to make an experiment. I want to use python to read the light sensor of my phone and then to adjust the screen bright based on the results of the reading. Like, if the light sensor is registering a lot of light, the screen bright increase, if it is registering a low level of light, the screen bright goes ... | I'm trying to make an experiment. I want to use python to read the light sensor of my phone and then to adjust the screen bright based on the results of the reading. Like, if the light sensor is registering a lot of light, the screen bright increase, if it is registering a low level of light, the screen bright goes dow... | python|android|android-sensors|screen-brightness|qpython3 | -2 | 2022-09-20T03:10:57.373Z | 2,022 | 9 | 3 | 1 | 19 | 0 | 508 | 57 | 5 | 0 | false | true | false | false | false | true | negative |
73,781,272 | when i running the project android studio on mobile. thats an error | <p>java.io.StreamCorruptedException: unexpected EOF in middle of data block.
caused by
Caused by: org.gradle.api.UncheckedIOException: java.io.StreamCorruptedException: unexpected EOF in middle of data block
at org.gradle.internal.UncheckedException.throwAsUncheckedException(UncheckedException.java:62)
at org.gradle.in... | java.io.StreamCorruptedException: unexpected EOF in middle of data block. caused by Caused by: org.gradle.api.UncheckedIOException: java.io.StreamCorruptedException: unexpected EOF in middle of data block at org.gradle.internal.UncheckedException.throwAsUncheckedException(UncheckedException.java:62) at org.gradle.inter... | java|android|kotlin|mobile | 0 | 2022-09-20T03:15:42.107Z | 2,022 | 9 | 3 | 1 | 23 | 0 | 14,619 | 67 | 4 | 0 | false | true | false | false | false | false | zero |
73,781,291 | Is it possible to save language option in DataStore? | <p>I'm using single activity pattern on my android project in kotlin.</p>
<p>The users can change language inside the app. I'm trying to store the option into Data store. Then every time user start the activity/App then it can load the last option in Data store.</p>
<p>That is:</p>
<pre><code> override fun attachBas... | I'm using single activity pattern on my android project in kotlin. The users can change language inside the app. I'm trying to store the option into Data store. Then every time user start the activity/App then it can load the last option in Data store. That is: [CODE] However, attachBaseContext starts before onCreate ,... | android|android-jetpack-datastore | 1 | 2022-09-20T03:19:12.240Z | 2,022 | 9 | 3 | 1 | 33 | 1 | 648 | 52 | 2 | 3 | true | false | false | false | false | false | low |
73,781,343 | Creating an android app to scan QR-code which is generated by a laravel web application and route to an url | <p>I have developed a Laravel web system. it has a feature that, it will generate qr code. I need to develop an android mobile app which will integrate this web system & have a qr scanner on it. so that, if anyone scan the web system generated qr code using android app, it will go to a specific page on that app. Pl... | I have developed a Laravel web system. it has a feature that, it will generate qr code. I need to develop an android mobile app which will integrate this web system & have a qr scanner on it. so that, if anyone scan the web system generated qr code using android app, it will go to a specific page on that app. Please he... | android|laravel|api|qr-code|jetstream | -1 | 2022-09-20T03:28:34.863Z | 2,022 | 9 | 3 | 1 | 39 | 0 | 368 | 107 | 5 | 0 | false | true | false | false | false | true | negative |
73,781,354 | how to match the shape of the area with the object on the android camera using computer vision? | <p>hello friends wherever you are,</p>
<p><a href="https://i.stack.imgur.com/3Ro4Q.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/3Ro4Q.png" alt="enter image description here" /></a></p>
<p>I want to try to match the object to the template in front of the android camera using OpenCv and tensorflow a... | hello friends wherever you are, I want to try to match the object to the template in front of the android camera using OpenCv and tensorflow and then if the recognized object matches then the lines in the template change color (like the example picture above). So the question is how to recognize the shape of the object... | android|tensorflow|opencv|computer-vision | 0 | 2022-09-20T03:31:01.303Z | 2,022 | 9 | 3 | 1 | 26 | 0 | 485 | 95 | 4 | 0 | false | true | false | false | false | false | zero |
73,781,378 | Flutter: Can't click listview item on integration test | <p>I have an app with a listview feature with provider pattern, and it has 5 items of data. Here is my snippet code</p>
<pre><code> ListView.builder(
key: Key("listview_portfolio"),
itemBuilder: (context, index) =>
_itemListPortofolio(data.items[index], context),
itemCount: d... | I have an app with a listview feature with provider pattern, and it has 5 items of data. Here is my snippet code [CODE] ... [CODE] When I run this code, it doesn't throw an error, but when I do the integration test, it throws an error when trying to click the item listview 'package:flutter_test/src/binding.dart': Faile... | android|ios|flutter|flutter-test|flutter-integration-test | 0 | 2022-09-20T03:34:51.590Z | 2,022 | 9 | 3 | 1 | 25 | 1 | 738 | 54 | 5 | 3 | true | false | false | false | false | false | zero |
73,781,387 | Fetching data from firebase error happen flutter | <p>while building whatsapp clone status uploading to database perfectly done , no issues in that case . But while displaying from DB to screen error found :- I/flutter (11808): RangeError (index): Invalid value: Valid value range is empty: 0</p>
<p>code of getstatus function</p>
<p>Future<List> getStatus(BuildCon... | while building whatsapp clone status uploading to database perfectly done , no issues in that case . But while displaying from DB to screen error found :- I/flutter (11808): RangeError (index): Invalid value: Valid value range is empty: 0 code of getstatus function Future<List> getStatus(BuildContext context) async { L... | android|flutter|firebase|firebase-storage|whatsapp | 0 | 2022-09-20T03:36:27.727Z | 2,022 | 9 | 3 | 1 | 19 | 0 | 349 | 48 | 5 | 1 | true | true | false | false | false | false | zero |
73,781,400 | How to enter next activity after get Result from SERVER POST? | <p>im new to android java coding, i need help with my login page, how should i enter to next activity when get result "Status" "Y", tried few solution its not working, what should i do?</p>
<pre><code>btSubmit.setOnClickListener(new View.OnClickListener() {
@Override
public void onCl... | im new to android java coding, i need help with my login page, how should i enter to next activity when get result "Status" "Y", tried few solution its not working, what should i do? [CODE] Picture here, I get lot of result from my server, just need to detect "Status" "Y" and acc... | java|android|json|authentication|post | 0 | 2022-09-20T03:38:23.087Z | 2,022 | 9 | 3 | 1 | 36 | 1 | 452 | 61 | 5 | 2 | true | false | false | false | false | false | zero |
73,781,423 | Load image from firestore collection into LazyColumn in jetpack compose | <p>My app has a navigation bar and in one navBarItem I have two tabs, I want to read images and their caption I have stored in my firebase firestore collection into a LazyColumn in one of the tabs.
Here is how my DataException and GalleryRepo class looks like</p>
<pre><code> data class DataOrException<T, E : Except... | My app has a navigation bar and in one navBarItem I have two tabs, I want to read images and their caption I have stored in my firebase firestore collection into a LazyColumn in one of the tabs. Here is how my DataException and GalleryRepo class looks like [CODE] My data class [CODE] ViewModels... [CODE] My GalleryColl... | android-studio|google-cloud-firestore|android-jetpack-compose|android-jetpack-navigation | 0 | 2022-09-20T03:43:32.010Z | 2,022 | 9 | 3 | 1 | 40 | 0 | 788 | 71 | 4 | 6 | true | true | false | false | false | false | zero |
73,781,466 | where should I put FLAG_IMMUTABLE | <p>I have an app that crashes due to a</p>
<pre><code>2022-09-20 06:42:22.691 25636-25738/com.example.mqttkotlinsample E/AndroidRuntime: FATAL EXCEPTION: MQTT Rec:
Process: com.example.mqttkotlinsample, PID: 25636
java.lang.IllegalArgumentException: com.example.mqttkotlinsample: Targeting S+ (version 31 and ab... | I have an app that crashes due to a [CODE] When I click on the line indicated ie.(PendingIntent.java:401) I am shown the following in PendingIntent.java [CODE] //This is where [CODE] //in located [CODE] I have found the following code to help stop the crash but I do not know where to put it. [CODE] I know that I am not... | android|kotlin|android-pendingintent | 0 | 2022-09-20T03:50:34.857Z | 2,022 | 9 | 3 | 1 | 29 | 1 | 556 | 33 | 3 | 5 | true | false | false | false | false | false | zero |
73,781,513 | LiveData not updating when changing (back and forth) activities | <p>Before I post detailed code, I want to make sure I do understand <code>LiveData</code> correctly. I have a MainActivity (A) and then go to Activity (B). I did implement a ViewModel for 'B' and observe (and display) the MutableLiveData for a Counter (residing in the ViewModel) in Activity 'B'.</p>
<p>This works perfe... | Before I post detailed code, I want to make sure I do understand LiveData correctly. I have a MainActivity (A) and then go to Activity (B). I did implement a ViewModel for 'B' and observe (and display) the MutableLiveData for a Counter (residing in the ViewModel) in Activity 'B'. This works perfect, I do see the countd... | android|android-livedata|android-viewmodel | 0 | 2022-09-20T03:59:58.550Z | 2,022 | 9 | 3 | 1 | 43 | 1 | 871 | 63 | 3 | 0 | false | false | false | false | false | false | zero |
73,781,570 | TypeError: cli.init is not a function when npx react-native init | <p>After upgrading React Native from 0.68.2 to 0.70.1 on MacOS Monterrey M1, <code>npx react-native init my-prom</code> started throwing error:</p>
<pre><code>/opt/homebrew/lib/node_modules/react-native-cli/index.js:302
cli.init(root, projectName);
^
TypeError: cli.init is not a function
at run (/opt/homeb... | After upgrading React Native from 0.68.2 to 0.70.1 on MacOS Monterrey M1, npx react-native init my-prom started throwing error: [CODE] npm -g list shows react-native-cli 2.0.1 was installed globally. Remove react-native-cli and install it again global didn't fix the problem. React Native was installed locally. | android|ios|react-native | 0 | 2022-09-20T04:11:15.447Z | 2,022 | 9 | 4 | 1 | 36 | 1 | 311 | 64 | 3 | 1 | true | false | false | false | false | false | zero |
73,781,758 | Android light, dark mode not applied with splash screen api | <p>I am using DayNight theme in my code. When I switch theme from system, theme was changed without closing and reopening the app. But When I integrated Splash screen api in the code, it doesn't work. I have to close the app and reopen for theme changes to be applied.
The splash screen library version is:</p>
<pre><cod... | I am using DayNight theme in my code. When I switch theme from system, theme was changed without closing and reopening the app. But When I integrated Splash screen api in the code, it doesn't work. I have to close the app and reopen for theme changes to be applied. The splash screen library version is: [CODE] Splash sc... | android|splash-screen|android-theme|android-splashscreen | 1 | 2022-09-20T04:45:51.100Z | 2,022 | 9 | 4 | 1 | 12 | 0 | 519 | 59 | 4 | 3 | true | true | false | false | false | false | low |
73,781,771 | Is there a possibility of using jwt based angular authentication system in native android app? | <p>Current screnario:
I have dot net core web api.
I have angular web app with jwt token based authentication system.</p>
<p>What I want to develop:
A native android app.</p>
<p>Why I want to use angular app's jwt based authentication system?</p>
<ol>
<li>
<ul>
<li>I created angular web app using angular material. So i... | Current screnario: I have dot net core web api. I have angular web app with jwt token based authentication system. What I want to develop: A native android app. Why I want to use angular app's jwt based authentication system? I created angular web app using angular material. So it closely follows material design guidel... | android|angular|jwt | 0 | 2022-09-20T04:50:58.610Z | 2,022 | 9 | 4 | 1 | 20 | 0 | 1,071 | 94 | 3 | 0 | false | true | false | false | false | false | zero |
73,781,878 | give this solution in react-native reanimate issue | <blockquote>
<p>Configure project :react-native-reanimated
Native libs debug enabled: false
Android gradle plugin: 7.1.1
Gradle: 7.3.3
building Reanimated2
WARNING:Software Components will not be created automatically for Maven publishing from Android Gradle Plugin 8.0. To opt-in to the future behavior, set the Gradle ... | Configure project :react-native-reanimated Native libs debug enabled: false Android gradle plugin: 7.1.1 Gradle: 7.3.3 building Reanimated2 WARNING:Software Components will not be created automatically for Maven publishing from Android Gradle Plugin 8.0. To opt-in to the future behavior, set the Gradle property android... | android|react-native|gradle | 0 | 2022-09-20T05:09:10.093Z | 2,022 | 9 | 5 | 1 | 27 | 0 | 688 | 50 | 3 | 0 | false | true | false | false | false | false | zero |
73,781,888 | Deferred components to reduce app bundle size - Flutter | <p>Whether the <a href="https://docs.flutter.dev/perf/deferred-components" rel="nofollow noreferrer">Deffered component</a> in flutter reduces the app bundle size for play store upload?.</p> | Whether the Deffered component in flutter reduces the app bundle size for play store upload?. | flutter|dart|flutter-dependencies|dart-pub|android-app-bundle | 1 | 2022-09-20T05:11:37.907Z | 2,022 | 9 | 5 | 1 | 32 | 1 | 93 | 55 | 5 | 0 | false | false | false | false | false | false | low |
73,781,896 | .net maui poject cannot archive/Publish due to app icon | <p>Following the changes as directed in <a href="https://learn.microsoft.com/en-us/dotnet/maui/user-interface/images/app-icons?tabs=android" rel="nofollow noreferrer">Microsoft documentation</a>, I made changes to my project as thus.</p>
<p>Android Manifest</p>
<pre><code><?xml version="1.0" encoding="... | Following the changes as directed in Microsoft documentation , I made changes to my project as thus. Android Manifest [CODE] In the project.csprog [CODE] I can deploy to the emulator and physical devices fine but... Trying to the archive on debug mode (Just to get the errors), fails and does not show any error. archivi... | c#|android|xamarin|.net-core|maui | 1 | 2022-09-20T05:12:59.017Z | 2,022 | 9 | 5 | 1 | 44 | 1 | 1,325 | 55 | 5 | 2 | true | false | false | false | false | false | low |
73,781,914 | Programmatically select an entry in MAUI using MVVM | <p>I am developing an Android app with MAUI using Community Toolkit.MVVM.
The logic is:
Scan barcode => next page and scan data matrix => next page.
Since I use scanner to scan Data matrix. Is has to be done without using any gesture or any click I have a couple of pages for now and I'm stuck. I need to focus on ... | I am developing an Android app with MAUI using Community Toolkit.MVVM. The logic is: Scan barcode => next page and scan data matrix => next page. Since I use scanner to scan Data matrix. Is has to be done without using any gesture or any click I have a couple of pages for now and I'm stuck. I need to focus on exact ent... | android|.net|mvvm|maui|community-toolkit-mvvm | 0 | 2022-09-20T05:15:28.750Z | 2,022 | 9 | 5 | 1 | 37 | 0 | 410 | 51 | 5 | 0 | false | true | false | false | false | false | zero |
73,781,918 | Paging3 storing only first fetched values in room database in andorid | <p>I try to use paging3 in android with offline support and for that I use Remotemediator but i'm not able to store data properly. it's store data only once when first time Api calls after that new item not shown in recyclerview scrolling</p>
<p>MovieDao</p>
<pre><code> @Dao
interface MovieDao {
@Insert(onC... | I try to use paging3 in android with offline support and for that I use Remotemediator but i'm not able to store data properly. it's store data only once when first time Api calls after that new item not shown in recyclerview scrolling MovieDao [CODE] RemoteKeyDao [CODE] MovieDatabase [CODE] DatabaseModule [CODE] Movie... | android|kotlin|android-room|android-jetpack|android-paging-3 | 0 | 2022-09-20T05:15:43.787Z | 2,022 | 9 | 5 | 1 | 15 | 0 | 410 | 69 | 5 | 8 | true | true | false | false | false | false | zero |
73,781,925 | What is the reason for this below abort error in Android | <p>This error was caught by Sentry. Is there any way to find what causes this error so it can be handled. Let me know if more</p>
<pre><code>
OS Version: Android 9 (F10_ALL_V1.0.3_202110260012)
Report Version: 104
Exception Type: Unknown (SIGABRT)
Application Specific Information:
Abort
Thread 0 Crashed:
0 libc.so... | This error was caught by Sentry. Is there any way to find what causes this error so it can be handled. Let me know if more [CODE] | android|android-ndk|abort | 0 | 2022-09-20T05:16:28.840Z | 2,022 | 9 | 5 | 1 | 16 | 0 | 129 | 56 | 3 | 1 | true | true | false | false | false | false | zero |
73,781,927 | HFP audio in Pixel 6a device for Android Automotive | <p>Does anyone tried the Android Automotive 13 or Android 12L build on Pixel 6a/3a devices, if yes does the HFP calling audio works?
The link below says Android Automotive 13 and 12L versions are supported in Pixel 6a/3a.
<a href="https://source.android.com/docs/setup/about/build-numbers#source-code-tags-and-builds" re... | Does anyone tried the Android Automotive 13 or Android 12L build on Pixel 6a/3a devices, if yes does the HFP calling audio works? The link below says Android Automotive 13 and 12L versions are supported in Pixel 6a/3a. https://source.android.com/docs/setup/about/build-numbers#source-code-tags-and-builds I have checked ... | android-automotive | 0 | 2022-09-20T05:16:53.973Z | 2,022 | 9 | 5 | 1 | 6 | 0 | 389 | 51 | 1 | 0 | false | true | false | false | false | false | zero |
73,781,974 | Exoplayer Live video playback with seeking back to play recorded video (DVR) | <ul>
<li>I have a live video with 5 min / 300 seconds backward seeking length (HLS media).</li>
<li>I am able to play the video as a live stream.</li>
<li>But when i seek back, it seeks up-to 56 seconds not 300 seconds, as player's window.getduration return 56 seconds (this is length of current live video).</li>
<li>I ... | I have a live video with 5 min / 300 seconds backward seeking length (HLS media). I am able to play the video as a live stream. But when i seek back, it seeks up-to 56 seconds not 300 seconds, as player's window.getduration return 56 seconds (this is length of current live video). I tried to use MediaItem.ClippingConfi... | android|exoplayer|exoplayer-media-item | 0 | 2022-09-20T05:24:10.070Z | 2,022 | 9 | 5 | 1 | 14 | 0 | 571 | 76 | 3 | 1 | true | true | false | false | false | false | zero |
73,781,980 | Android TV box developer options | <p>I turn on developer option on Android Box TV and get this message. Do anyone know where this password set? Thanks in advance.<a href="https://i.stack.imgur.com/Filz8.jpg" rel="nofollow noreferrer">enter image description here</a></p> | I turn on developer option on Android Box TV and get this message. Do anyone know where this password set? Thanks in advance. enter image description here | android | -3 | 2022-09-20T05:25:05.540Z | 2,022 | 9 | 5 | 1 | 27 | 0 | 154 | 32 | 1 | 0 | false | true | false | false | false | true | negative |
73,782,026 | Android E2E testing with MVVM architecture and Single Activity Pattern | <p>I have app with mvvm architecture and single activity pattern. I am using jetpack navigation component. Now I want to make end to end test with espresso.
I want to test this scenario. User fill all data in login page and click sign in button after app navigate to new screen and fills data in new screen.Here a simple... | I have app with mvvm architecture and single activity pattern. I am using jetpack navigation component. Now I want to make end to end test with espresso. I want to test this scenario. User fill all data in login page and click sign in button after app navigate to new screen and fills data in new screen.Here a simple ex... | android|mvvm|tdd|e2e-testing | 0 | 2022-09-20T05:33:04.920Z | 2,022 | 9 | 5 | 1 | 12 | 0 | 454 | 70 | 4 | 1 | true | true | false | false | false | false | zero |
73,782,029 | Is React Native 0.63.3 Android can't be run on Mac Mini M1? | <p>My goal is to run an old project. It uses React Native 0.63.3. This is <a href="https://github.com/kidfrom/fe-mobile-bankaccount" rel="nofollow noreferrer">the repository</a></p>
<p>What I've did:</p>
<ol>
<li>Setup the environment by following the <a href="https://reactnative.dev/docs/0.63/environment-setup" rel="n... | My goal is to run an old project. It uses React Native 0.63.3. This is the repository What I've did: Setup the environment by following the docs for 0.63 Installed Android Studio a month ago. did $ brew install --cask adoptopenjdk/openjdk/adoptopenjdk8 did not do $ brew install node because it is already installed. did... | android|react-native | 0 | 2022-09-20T05:33:30.130Z | 2,022 | 9 | 5 | 1 | 28 | 0 | 897 | 59 | 2 | 2 | true | true | false | false | false | false | zero |
73,782,031 | Stopping an Android service (when back to the foreground) not working | <p>Here is an issue I am facing when using a service in an Android app to play audio in the background.</p>
<p>The audio plays as expected in the background, and the app has a stop button that should be used to stop the audio play when the app comes back to the foreground. And this button is not working.</p>
<p>I use a... | Here is an issue I am facing when using a service in an Android app to play audio in the background. The audio plays as expected in the background, and the app has a stop button that should be used to stop the audio play when the app comes back to the foreground. And this button is not working. I use a class instance v... | android|kotlin|service | 0 | 2022-09-20T05:33:49.587Z | 2,022 | 9 | 5 | 1 | 25 | 1 | 838 | 69 | 3 | 3 | true | false | false | false | false | false | zero |
73,782,055 | I want to change the shape of the radio button, can I change the border size? | <pre><code> <ContentPage.Resources>
<ControlTemplate x:Key="FrameRadioTemplate">
<Frame
Padding="10"
BackgroundColor="{DynamicResource ColorBorder000}"
BorderColor="Red"
HeightReque... | [CODE] I want to change the shape of the radio button, can I change the border size? I'm trying to change the shape of a radio button's appearance using a control template. But I want to change the border thickness of the frame, but there is no way. The default thickness is too thick. I've looked for many other example... | xamarin|xamarin.forms|xamarin.android | 0 | 2022-09-20T05:38:07.657Z | 2,022 | 9 | 5 | 1 | 43 | 1 | 385 | 77 | 3 | 1 | true | false | false | false | false | false | zero |
73,782,073 | How do I change the function of the volume button? | <p>I'm creating an Android app that counts, like a people counter.
Is it possible for it to be in a way where you have to press the volume buttons to add +1 or -1 from the counts?</p>
<p>How do I achieve this?</p> | I'm creating an Android app that counts, like a people counter. Is it possible for it to be in a way where you have to press the volume buttons to add +1 or -1 from the counts? How do I achieve this? | java|android|kotlin | -2 | 2022-09-20T05:40:52.180Z | 2,022 | 9 | 5 | 1 | 46 | 2 | 199 | 50 | 3 | 0 | false | false | false | false | false | true | negative |
73,782,187 | Need to get updated location/data from onLocationChanged | <p><em>Just a warning: I'm really not proud of this code that I've written, but I just need it to work anyhow. Don't judge me too harshly.</em></p>
<p>Hey everyone, I'm programming a speedometer android app, and I'm running into a basic issue. I need to calculate the distance between two GPS coordinates using the Andro... | Just a warning: I'm really not proud of this code that I've written, but I just need it to work anyhow. Don't judge me too harshly. Hey everyone, I'm programming a speedometer android app, and I'm running into a basic issue. I need to calculate the distance between two GPS coordinates using the Android location service... | java|android|gps|android-gps | 0 | 2022-09-20T05:58:02.133Z | 2,022 | 9 | 5 | 1 | 16 | 1 | 1,139 | 56 | 4 | 2 | true | false | false | false | false | false | zero |
73,782,279 | Inserted data not being shown in the database | <p>My app will successfully build the SQLite database and insert data but when viewing it's empty apart from the column headings.</p>
<p>Permissions in manifest:</p>
<pre><code><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.perm... | My app will successfully build the SQLite database and insert data but when viewing it's empty apart from the column headings. Permissions in manifest: [CODE] QuoteDatabaseHandler creates columns ID and QUOTE : [CODE] Insert function: [CODE] dbHelper is called within Oncreate : [CODE] Along with the insert method: [COD... | android|sqlite|kotlin|android-sqlite | 0 | 2022-09-20T06:10:38.717Z | 2,022 | 9 | 6 | 1 | 40 | 1 | 322 | 45 | 4 | 5 | true | false | false | false | false | false | zero |
73,782,298 | Android App Fatal Exception on simple API call (Kotlin) | <p>I always got FATAL EXCEPTION when i try to make an API call. I made a button in the MainActivity, and setup an onClickListener:</p>
<pre><code>class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
binding... | I always got FATAL EXCEPTION when i try to make an API call. I made a button in the MainActivity, and setup an onClickListener: [CODE] And the function which is supossed to be called on click: [CODE] After i click the button the app exits with the following: [CODE] I tried to add Internet Permission to the manifest.xml... | android|api|kotlin | 0 | 2022-09-20T06:13:07.143Z | 2,022 | 9 | 6 | 1 | 32 | 0 | 617 | 55 | 3 | 3 | true | true | false | false | false | false | zero |
73,782,320 | OnBackInvokedCallback is not enabled for the application in Set 'android:enableOnBackInvokedCallback="true"' in the application manifest as warning | <p>I'm running my Android Application `Android-13, in the Logcat I'm seeing this warning, How to resolve this?</p>
<pre><code>OnBackInvokedCallback is not enabled for the application.
Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
</code></pre> | I'm running my Android Application `Android-13, in the Logcat I'm seeing this warning, How to resolve this? [CODE] | android-gesture|android-13|gesture-navigation | 1 | 2022-09-20T06:16:49.337Z | 2,022 | 9 | 6 | 1 | 93 | 1 | 114 | 147 | 3 | 1 | true | false | false | false | false | false | low |
73,782,343 | Unable to generate java wrapper class using truffle | <p>I tried to generate java wrapper class from smart contract .sol file. I tried truffle command to generate the same but it does not work. I refer this link</p>
<p><a href="https://greg.jeanmart.me/2019/07/19/generate-a-java-wrapper-from-your-smart-contract/" rel="nofollow noreferrer">https://greg.jeanmart.me/2019/07/... | I tried to generate java wrapper class from smart contract .sol file. I tried truffle command to generate the same but it does not work. I refer this link https://greg.jeanmart.me/2019/07/19/generate-a-java-wrapper-from-your-smart-contract/ Thanks in advance. | android|blockchain|ethereum|solidity | 0 | 2022-09-20T06:19:50.873Z | 2,022 | 9 | 6 | 1 | 13 | 0 | 259 | 51 | 4 | 0 | false | true | false | false | false | false | zero |
73,782,463 | Jabber Plugin Video: An Error occured while calling JabberSDK as a plugin from UXP (Temenos) , Showing JabberGuestCallActivity.class not found | <p>The Jabber Guest SDK for Android uses H.264 AVC video.</p>
<p>In Hybrid app I am getting error from SDK during JabberGuestCall instance creation, the error says the activity context is not registered with video licence dialog and app getting crash.
Here I have used JabberGuestCall.disableVideoLicenseActivation(getAp... | The Jabber Guest SDK for Android uses H.264 AVC video. In Hybrid app I am getting error from SDK during JabberGuestCall instance creation, the error says the activity context is not registered with video licence dialog and app getting crash. Here I have used JabberGuestCall.disableVideoLicenseActivation(getApplicationC... | android|cordova-plugins|hybrid-mobile-app|temenos | 0 | 2022-09-20T06:34:01.137Z | 2,022 | 9 | 6 | 1 | 9 | 0 | 484 | 142 | 4 | 0 | false | true | false | false | false | false | zero |
73,782,470 | Android idle mode activation for plugged-in Android boxes | <p>I'm developing an app for Android tv boxes, where I need to run some jobs when the device is idle. Since the device has no battery and is always plugged-in, I'm not sure that the device will enter the idle mode. Also the screen never turns off and the device shows a screensaver to the user.</p>
<p>Does this mean the... | I'm developing an app for Android tv boxes, where I need to run some jobs when the device is idle. Since the device has no battery and is always plugged-in, I'm not sure that the device will enter the idle mode. Also the screen never turns off and the device shows a screensaver to the user. Does this mean these devices... | android|android-tv|android-workmanager | 0 | 2022-09-20T06:34:21.157Z | 2,022 | 9 | 6 | 1 | 15 | 0 | 435 | 57 | 3 | 0 | false | true | false | false | false | false | zero |
73,782,471 | How Did the GNU libstdc++ Library Find Its Way into Our App? | <h3>The Question</h3>
<p>This is <strong>not</strong> about legal advice. We are asking <strong>why/how the GNU libstdc++ library seemingly found its way into our app</strong>, when to the best of our knowledge it should not be part of our app, according to our IDE setup.</p>
<h3>Context</h3>
<p>We recently used Androi... | The Question This is not about legal advice. We are asking why/how the GNU libstdc++ library seemingly found its way into our app , when to the best of our knowledge it should not be part of our app, according to our IDE setup. Context We recently used Android's documentation to include open source notices in our app. ... | android|c++|android-ndk|clang|libstdc++ | 0 | 2022-09-20T06:34:26.150Z | 2,022 | 9 | 6 | 1 | 52 | 0 | 1,938 | 60 | 5 | 2 | true | true | false | false | false | false | zero |
73,782,489 | View binding binder null pointer exception - Android | <p>I am getting view binding null exception is occurring in fragment when i try to inject a broadcast recevier using hilt.</p>
<p>The implementation is done as per
<a href="https://developer.android.com/topic/libraries/view-binding" rel="nofollow noreferrer">https://developer.android.com/topic/libraries/view-binding</a... | I am getting view binding null exception is occurring in fragment when i try to inject a broadcast recevier using hilt. The implementation is done as per https://developer.android.com/topic/libraries/view-binding But the issue happens only when i try to inject a broadcast reciever / Channel. User navigates from Fragmen... | android-fragments|broadcastreceiver|android-broadcast|dagger-hilt|android-service-binding | 0 | 2022-09-20T06:35:35.997Z | 2,022 | 9 | 6 | 1 | 10 | 0 | 567 | 52 | 5 | 0 | false | true | false | false | false | false | zero |
73,782,495 | Android collapsable toolbar on scroll, adjusts itself to either top or bottom | <p>Android collapsable toolbar on scroll, adjusts itself to either top or bottom, I want it to stay at the point where I left the scroll.</p> | Android collapsable toolbar on scroll, adjusts itself to either top or bottom, I want it to stay at the point where I left the scroll. | android|android-animation|collapsable | 0 | 2022-09-20T06:36:30.050Z | 2,022 | 9 | 6 | 1 | 15 | 0 | 134 | 77 | 3 | 0 | false | true | false | false | false | false | zero |
73,782,557 | Cause: lateinit property _buildFeatureValues has not been initialized | <p>When I Upgrade Gradle from 4.2.2 to 7.3.0 I got Below Error</p>
<p><strong>Cause: lateinit property _buildFeatureValues has not been initialized</strong></p>
<p>So How to solve this error?</p>
<p><a href="https://i.stack.imgur.com/FlWeT.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/FlWeT.png" al... | When I Upgrade Gradle from 4.2.2 to 7.3.0 I got Below Error Cause: lateinit property _buildFeatureValues has not been initialized So How to solve this error? | android|android-studio|intellij-idea|build.gradle|jetbrains-ide | 1 | 2022-09-20T06:45:09.320Z | 2,022 | 9 | 6 | 1 | 50 | 1 | 157 | 69 | 5 | 0 | false | false | false | false | false | false | low |
73,782,571 | how to add AlertDialog in OnPause() method? | <p>I want to show an <code>AlertDialog</code> when a user click on Back, Home and Recent button in Android Navigation Bar for back button.</p>
<p>I used <code>onBackPressed()</code> method and it's working fine but for Home and Recent, I am using <code>onPause()</code> method and it's not working.</p>
<p>Kindly help me... | I want to show an AlertDialog when a user click on Back, Home and Recent button in Android Navigation Bar for back button. I used onBackPressed() method and it's working fine but for Home and Recent, I am using onPause() method and it's not working. Kindly help me to resolve it. [CODE] | java|android|onpause | 1 | 2022-09-20T06:46:14.490Z | 2,022 | 9 | 6 | 1 | 27 | 1 | 286 | 43 | 3 | 1 | true | false | false | false | false | false | low |
73,782,653 | Appium inspector can't start session | <p>I can't start session in Appium inspector, I have spent all my time but still haven't found a working solution. starting the session is only greeted with:</p>
<blockquote>
<p>Failed to create session. An unknown server-side error occurred while
processing the command. Original error: Cannot verify the signature of
'... | I can't start session in Appium inspector, I have spent all my time but still haven't found a working solution. starting the session is only greeted with: Failed to create session. An unknown server-side error occurred while processing the command. Original error: Cannot verify the signature of 'C:\Users\Jack\AppData\L... | python|android|selenium|appium|appium-android | -1 | 2022-09-20T06:54:07.230Z | 2,022 | 9 | 6 | 1 | 33 | 1 | 833 | 36 | 5 | 0 | false | false | false | false | false | true | negative |
73,782,659 | Not able to Update application in play store | <p>Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again. Your App Bundle is expected to be signed with the certificate with fingerprint: SHA1: CB:AD:B1:8A:A9:F9:FE:26:F8:09:64:A6:7C:BE:FA:3B:C0:3F:FB:CD but the certificate used to sign th... | Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again. Your App Bundle is expected to be signed with the certificate with fingerprint: SHA1: CB:AD:B1:8A:A9:F9:FE:26:F8:09:64:A6:7C:BE:FA:3B:C0:3F:FB:CD but the certificate used to sign the A... | android|google-play-console | -3 | 2022-09-20T06:54:38.667Z | 2,022 | 9 | 6 | 1 | 41 | 1 | 856 | 44 | 2 | 0 | false | false | false | false | false | true | negative |
73,782,685 | GCP Api Key security for youtube | <p>I am using youtube player in my app and i am getting this warning in google play console.</p>
<pre><code> Your app contains exposed Google Cloud Platform (GCP) API keys. Please see this Google Help Center article for details.
- com.example.myplayeryoutube.MainActivity.onCreate
</code></pre>
<p><strong>W... | I am using youtube player in my app and i am getting this warning in google play console. [CODE] What is best practices to keep information secure on client side? How to secure the api key for YouTube Player API? Code from my application: [CODE] Thanks! | android|google-cloud-platform|android-youtube-api | 0 | 2022-09-20T06:57:13.567Z | 2,022 | 9 | 6 | 1 | 17 | 0 | 253 | 32 | 3 | 2 | true | true | false | false | false | false | zero |
73,782,788 | Android NotificationChannel.setBypassDnd(true) has no effect on OnePlus/Oppo devices | <p>I want to play the notification ringtone sound even though DND mode is enabled on the Android device.</p>
<p>For this, I was requesting DND Override permission (<code>android.permission.ACCESS_NOTIFICATION_POLICY</code>). Once the user grants the permission then while creating the notification channel I'm setting <c... | I want to play the notification ringtone sound even though DND mode is enabled on the Android device. For this, I was requesting DND Override permission ( android.permission.ACCESS_NOTIFICATION_POLICY ). Once the user grants the permission then while creating the notification channel I'm setting channel.setBypassDnd(tr... | android|push-notification|notification-channel|do-not-disturb | 0 | 2022-09-20T07:06:21.067Z | 2,022 | 9 | 7 | 1 | 12 | 0 | 474 | 84 | 4 | 0 | false | true | false | false | false | false | zero |
73,782,789 | Request with approximately similar Data Classes | <p>I'm interested in what is best practice when you have two services, which are using approximately similar Data Classes for request, e.g. one service need 7 parameters but second service needs 8 just one additional parameter others are the same, should I have to create another data class? or create a mapper? what sho... | I'm interested in what is best practice when you have two services, which are using approximately similar Data Classes for request, e.g. one service need 7 parameters but second service needs 8 just one additional parameter others are the same, should I have to create another data class? or create a mapper? what should... | android|networking|request|retrofit | 0 | 2022-09-20T07:06:25.897Z | 2,022 | 9 | 7 | 1 | 7 | 0 | 339 | 47 | 4 | 0 | false | true | false | false | false | false | zero |
73,782,792 | Failed to initialize editor. when update android studio | <p>today i have update my android studio version <strong>Android Studio Dolphin | 2021.3.1</strong> then i got an issue.</p>
<p>like xml preview are not showing.</p>
<p>and suggestion not found in <code>xml</code> and <code>java</code> class</p>
<p><a href="https://i.stack.imgur.com/5LCfp.png" rel="nofollow noreferrer"... | today i have update my android studio version Android Studio Dolphin | 2021.3.1 then i got an issue. like xml preview are not showing. and suggestion not found in xml and java class Image | xml|android-studio|android-layout | 2 | 2022-09-20T07:06:36.033Z | 2,022 | 9 | 7 | 1 | 147 | 1 | 187 | 55 | 3 | 0 | false | false | false | false | false | false | low |
73,782,835 | Permission error Error when using @types/dom-mediacapture-record to implement video capturing and video upload from device | <p>When to use the "@types/dom-mediacapture-record" plugin to capture video in capacitor ionic app I get an error. It does work in web version, but in the mobile app it throws "NotAllowedError: Permission denied" .</p>
<p>I think I have the proper permissions set up.
Do you have any suggestions how ... | When to use the "@types/dom-mediacapture-record" plugin to capture video in capacitor ionic app I get an error. It does work in web version, but in the mobile app it throws "NotAllowedError: Permission denied" . I think I have the proper permissions set up. Do you have any suggestions how to resolve... | android|ionic-framework|capacitor|capacitor-plugin | -1 | 2022-09-20T07:10:34.723Z | 2,022 | 9 | 7 | 1 | 19 | 0 | 388 | 122 | 4 | 0 | false | true | false | false | false | true | negative |
73,782,855 | Android: How to share image on facebook via intent? | <p>We previously used to post image on facebook like this...</p>
<pre><code>Uri imageUri = getImageUri()
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM, imageUri);
intent.setType("image/*");
intent.setPackage("com.facebook.katana");
startActiv... | We previously used to post image on facebook like this... [CODE] But now the image doesn't get attached to the newsfeed post. It shows a toast saying: "Unable to share to Reels. To share this content, create a post" Any help will be appreciated. | android|facebook|android-intent | 0 | 2022-09-20T07:13:03.110Z | 2,022 | 9 | 7 | 1 | 28 | 1 | 255 | 51 | 3 | 1 | true | false | false | false | false | false | zero |
73,782,858 | Android Studio xml design doesn't show anything, only a rect. and no error ,no issues | <p>Toady, I found my AS xml design not worked. It doesn't show anything
<a href="https://i.stack.imgur.com/fUWBu.png" rel="nofollow noreferrer">enter image description here</a></p>
<p>And this project can build successfully, install apk also successfully, gradle sync,clean porject and rebuild project also successfully ... | Toady, I found my AS xml design not worked. It doesn't show anything enter image description here And this project can build successfully, install apk also successfully, gradle sync,clean porject and rebuild project also successfully too. But the design widow doesn't show anything, I have tried change theme in style.xm... | android|android-studio | -2 | 2022-09-20T07:13:14.340Z | 2,022 | 9 | 7 | 1 | 31 | 1 | 755 | 85 | 2 | 0 | false | false | false | false | false | true | negative |
73,782,937 | I am getting empty string returned when calling getTansalation() of my TranslateString which translates using Google mlkit language translator | <p>After initializing TranslateString in calling function getTranslation(), i am getting <strong>Default</strong> (which is returned when value is empty) as return, Which shouldn't be case as I have put translate under runBlocking{ }, Kindly tell what would be best way to get return from getTranslation after input Stri... | After initializing TranslateString in calling function getTranslation(), i am getting Default (which is returned when value is empty) as return, Which shouldn't be case as I have put translate under runBlocking{ }, Kindly tell what would be best way to get return from getTranslation after input String is translated. He... | android-asynctask|kotlin-coroutines|google-translate | 0 | 2022-09-20T07:20:25.663Z | 2,022 | 9 | 7 | 1 | 14 | 0 | 569 | 142 | 3 | 1 | true | true | false | false | false | false | zero |
73,782,983 | ActivityResultContracts.CaptureVideo() crashing with DeadObjectExceptions on API 33? | <p>I'm trying to use ActivityResultContracts.CaptureVideo(), but when I run it on API 33, it's crashing with this stacktrace:</p>
<pre><code>> 2022-09-19 20:32:02.047 577-601/system_process W/WindowManager: Exception thrown during dispatchAppVisibility Window{5b4304c u0
> com.my.package/com.my.package.activit... | I'm trying to use ActivityResultContracts.CaptureVideo(), but when I run it on API 33, it's crashing with this stacktrace: [CODE] The relevant code looks like : [CODE] Is this a problem with API 33? It seems that all the other API levels our app supports are working fine (Specifically I've also tested API 32, 30, and 2... | android|kotlin|onactivityresult|activityresultcontracts|deadobjectexception | 0 | 2022-09-20T07:25:22.140Z | 2,022 | 9 | 7 | 1 | 17 | 0 | 407 | 84 | 5 | 2 | true | true | false | false | false | false | zero |
73,782,996 | Login Screen won't connect to Firebase Authentication | <p>I am trying to connect <code>Firebase</code> to my Login Page in <code>Flutter</code>, but I cannot connect because of the following errors:</p>
<pre><code> Ignoring header X-Firebase-Locale because its value was null.
Notifying id token listeners about user ( e3OIktY1XafU7ddf5yMgALiA69c2 ).
</code></pre>
<p>What d... | I am trying to connect Firebase to my Login Page in Flutter , but I cannot connect because of the following errors: [CODE] What does it mean and How can I fix this? Appreciate if someone can advise. Thank you in advance! | flutter|android-studio|dart | 0 | 2022-09-20T07:26:22.983Z | 2,022 | 9 | 7 | 1 | 31 | 1 | 220 | 53 | 3 | 1 | true | false | false | false | false | false | zero |
73,783,041 | Cannot open files such as doc, ppt, xls in Android | <p>I have seen this question several times, but I couldn't find the proper answer.
I am trying to open files such as doc, ppt, xls etc. I don't want to open them by downloading, because the file must be read only, and should not be able to be downloaded. The only file that I can open is pdf file.
Example: This is what ... | I have seen this question several times, but I couldn't find the proper answer. I am trying to open files such as doc, ppt, xls etc. I don't want to open them by downloading, because the file must be read only, and should not be able to be downloaded. The only file that I can open is pdf file. Example: This is what I t... | android|kotlin | -1 | 2022-09-20T07:30:49.927Z | 2,022 | 9 | 7 | 1 | 37 | 0 | 626 | 50 | 2 | 2 | true | true | false | false | false | true | negative |
73,783,109 | Encrypt and Decrypt Room Database in android | <p>I have created an application where I am using <strong>room database</strong>. Now I have feature where user can take backup and restore the data. DB file is saved in the documents folder where I want that my that .db file is <strong>encrypted</strong> and when user restore it then it will <strong>decrypt</strong> i... | I have created an application where I am using room database . Now I have feature where user can take backup and restore the data. DB file is saved in the documents folder where I want that my that .db file is encrypted and when user restore it then it will decrypt in the application. | android|encryption|android-room | -1 | 2022-09-20T07:37:05.670Z | 2,022 | 9 | 7 | 1 | 20 | 0 | 285 | 44 | 3 | 0 | false | true | false | false | false | true | negative |
73,783,188 | Android Virtual Device getting crashed after applying Validation to a Form | <p>I am working on a Login activity and Submit form activity. After applying validation to submit form I came across few runtime errors like...</p>
<ol>
<li>Duplicate class android.support.v4.app.INotificationSideChannel found in modules</li>
<li>Duplicate class com.google.common.util.concurrent.ListenableFuture found ... | I am working on a Login activity and Submit form activity. After applying validation to submit form I came across few runtime errors like... Duplicate class android.support.v4.app.INotificationSideChannel found in modules Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules jetified-guava... | android | 0 | 2022-09-20T07:44:01.703Z | 2,022 | 9 | 7 | 1 | 16 | 0 | 773 | 74 | 1 | 0 | false | true | false | false | false | false | zero |
73,783,309 | Decode private relay email | <p>I'm developing Apple Authentication feature on Android with React Native, using this library: <a href="https://github.com/invertase/react-native-apple-authentication" rel="nofollow noreferrer">https://github.com/invertase/react-native-apple-authentication</a>. Everything goes fine, but there is still a thing I want ... | I'm developing Apple Authentication feature on Android with React Native, using this library: https://github.com/invertase/react-native-apple-authentication . Everything goes fine, but there is still a thing I want to show in the form is that the real email, or Apple ID of the user. The default settings of Apple accoun... | android|ios|react-native|base64 | 0 | 2022-09-20T07:55:16.073Z | 2,022 | 9 | 7 | 1 | 20 | 0 | 809 | 26 | 4 | 2 | true | true | false | false | false | false | zero |
73,783,336 | Android how to copy list files selected using AsyncTask and show status current percent copy file | <p>I'm picking a file from the gallery and copying it to a specified folder. While copying I'm showing a ProgressDialog, I'm doing this with AsyncTask.</p>
<p>I'm trying to show the progress of the file being copied with percentage.
How can I get the current progress of the file being copied and display it as percentag... | I'm picking a file from the gallery and copying it to a specified folder. While copying I'm showing a ProgressDialog, I'm doing this with AsyncTask. I'm trying to show the progress of the file being copied with percentage. How can I get the current progress of the file being copied and display it as percentage ??? My c... | android|percentage|file-copying | 0 | 2022-09-20T07:57:12.780Z | 2,022 | 9 | 7 | 1 | 21 | 0 | 345 | 97 | 3 | 1 | true | true | false | false | false | false | zero |
73,783,387 | React native old project build failed | <p>I am working in a old react native project. I am getting errors while running this app. How I can solve these errors. First time I am working in a old react native project. This app build in react native old version. I update this in to version. Please help me.</p>
<p>// My package.json ==></p>
<pre><code> &qu... | I am working in a old react native project. I am getting errors while running this app. How I can solve these errors. First time I am working in a old react native project. This app build in react native old version. I update this in to version. Please help me. // My package.json ==> [CODE] //project level gradle [CODE... | android|node.js|reactjs|react-native | 0 | 2022-09-20T08:01:11.537Z | 2,022 | 9 | 8 | 1 | 32 | 0 | 417 | 37 | 4 | 4 | true | true | false | false | false | false | zero |
73,783,431 | How to change location of Textview | <p>I have a Linear Layout inside of Constraint Layout. The cardview visibility changes depending on the data. How to align start textview1 and textview2 if cardview visibility is invisible ?</p>
<p><a href="https://i.stack.imgur.com/x6byB.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/x6byB.png" alt... | I have a Linear Layout inside of Constraint Layout. The cardview visibility changes depending on the data. How to align start textview1 and textview2 if cardview visibility is invisible ? | java|android|kotlin|user-interface|visibility | 0 | 2022-09-20T08:05:47.220Z | 2,022 | 9 | 8 | 1 | 38 | 2 | 187 | 34 | 5 | 0 | false | false | false | false | false | false | zero |
73,783,461 | How to send video stream from a google glass to a mobile device? | <p>I am new to java and trying to develop a mobile application for google glass that can share video stream of the google glass to a web application through this mobile application in form of a video call. how can I connect the google glass to the mobile app?</p> | I am new to java and trying to develop a mobile application for google glass that can share video stream of the google glass to a web application through this mobile application in form of a video call. how can I connect the google glass to the mobile app? | java|android|video-streaming|google-glass|videochat | 0 | 2022-09-20T08:08:07.560Z | 2,022 | 9 | 8 | 1 | 22 | 0 | 256 | 64 | 5 | 0 | false | true | false | false | false | false | zero |
73,783,625 | How to access json array in url that needs bearer token and display in android studio? | <p>Hello stackoverflow community!!</p>
<p>How do I access a JSON array
in this URL "https://api.json-generator.com/templates/z0aMAeTBHKq3/data"</p>
<p>token is "2oof0bzpgllll2a8k2fmmh6aaykeu8yptztdzke7"</p>
<p>but when I display the data in an <code>Activity</code>, it just displays blank and exits ... | Hello stackoverflow community!! How do I access a JSON array in this URL "https://api.json-generator.com/templates/z0aMAeTBHKq3/data" token is "2oof0bzpgllll2a8k2fmmh6aaykeu8yptztdzke7" but when I display the data in an Activity , it just displays blank and exits the app. But When I change the URL w... | java|android|json | -1 | 2022-09-20T08:22:07.277Z | 2,022 | 9 | 8 | 1 | 32 | 1 | 703 | 86 | 3 | 4 | true | false | false | false | false | true | negative |
73,783,637 | How to extract all video frames using ffmpeg-kit with flutter | <p>I'm trying to convert a file to a list of image file. Ideally with an option to extract a frame every X milliseconds.</p>
<p>Do you know if it possible to do so with flutter using ffmpeg?</p>
<p>Been trying with export_video_frame plugin but it is very slow and not stable.</p> | I'm trying to convert a file to a list of image file. Ideally with an option to extract a frame every X milliseconds. Do you know if it possible to do so with flutter using ffmpeg? Been trying with export_video_frame plugin but it is very slow and not stable. | flutter|ffmpeg|android-ffmpeg | 0 | 2022-09-20T08:23:09.027Z | 2,022 | 9 | 8 | 1 | 34 | 1 | 259 | 61 | 3 | 0 | false | false | false | false | false | false | zero |
73,783,648 | Ionic / capacitor : automate build on jenkins | <p>I am currently building an hybrid app with Ionic and i need to automate the build on jenkins.
However, i am using capacitor and it not allow the use of command line for building a signed apk.</p>
<p>I am building with this line:</p>
<p><strong>sh 'ionic capacitor build -verbose --prod --release android'</strong></p>... | I am currently building an hybrid app with Ionic and i need to automate the build on jenkins. However, i am using capacitor and it not allow the use of command line for building a signed apk. I am building with this line: sh 'ionic capacitor build -verbose --prod --release android' It return this error : [CODE] I know ... | android|jenkins|ionic-framework|build|capacitor | 0 | 2022-09-20T08:24:24.813Z | 2,022 | 9 | 8 | 1 | 27 | 0 | 445 | 45 | 5 | 1 | true | true | false | false | false | false | zero |
73,783,680 | UE5 app can be launched and run directly on my Pixel 6 via editor while connected via cable, but won't launch once the app exists on device | <p>Basically, my AR app stuck at Unreal splash screen once it is launched from home screen/app drawer. But it works fine when launched directly from the UE editor on the device.</p>
<p>Doesn't seem to be permission issues either.</p> | Basically, my AR app stuck at Unreal splash screen once it is launched from home screen/app drawer. But it works fine when launched directly from the UE editor on the device. Doesn't seem to be permission issues either. | android|unreal-engine4|unreal-engine5 | -1 | 2022-09-20T08:27:54.167Z | 2,022 | 9 | 8 | 1 | 19 | 0 | 219 | 139 | 3 | 0 | false | true | false | false | false | true | negative |
73,783,780 | Android Can't setup Device , Contact Your It Admin, getting this error in new phones, while qr code is working fine in old phones | <p>I am creating a device policy manager app, its working fine in old device till android 10, but on higher versions while scanning qrcode its giving the error , can't setup device, contact your it admin for help.</p> | I am creating a device policy manager app, its working fine in old device till android 10, but on higher versions while scanning qrcode its giving the error , can't setup device, contact your it admin for help. | android|enterprise|emm | 0 | 2022-09-20T08:34:36.690Z | 2,022 | 9 | 8 | 1 | 17 | 0 | 210 | 129 | 3 | 0 | false | true | false | false | false | false | zero |
73,783,788 | Why We Use @Bindable in Android | <p>I am new to android so while using room database we have to use @Bindable when we extend BaseObservable so I didn't get proper definition why we use so I want a simple definition of that .</p> | I am new to android so while using room database we have to use @Bindable when we extend BaseObservable so I didn't get proper definition why we use so I want a simple definition of that . | android|mvvm|android-room|android-databinding|android-developer-api | 0 | 2022-09-20T08:35:09.267Z | 2,022 | 9 | 8 | 1 | 17 | 0 | 188 | 31 | 5 | 0 | false | true | false | false | false | false | zero |
73,783,914 | how do i put platform views under the bottomsheet of the scaffold | <p>I ran into a problem that the platforms view are displayed on top of the bottomsheet. If you uncomment the line everything works correctly. How do I achieve behavior like with a commented line.</p>
<pre><code> Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xffFFFFFF),
... | I ran into a problem that the platforms view are displayed on top of the bottomsheet. If you uncomment the line everything works correctly. How do I achieve behavior like with a commented line. [CODE] | android|flutter|view|platform|scaffold | -1 | 2022-09-20T08:44:08.460Z | 2,022 | 9 | 8 | 1 | 25 | 0 | 200 | 65 | 5 | 1 | true | true | false | false | false | true | negative |
73,783,954 | Is it possible to automate Bar/ QR code scanning using Appium for iOS/Android app? | <p>Just wanted to know if this is possible to automate bar code or QR code scanning for mobile testing automation using Emulator/simulator or even on Virtual devices using Sauce labs or Perfecto?
If Yes, Plz suggest the approach.</p> | Just wanted to know if this is possible to automate bar code or QR code scanning for mobile testing automation using Emulator/simulator or even on Virtual devices using Sauce labs or Perfecto? If Yes, Plz suggest the approach. | appium|webdriver-io|appium-android|appium-ios | 0 | 2022-09-20T08:47:45.507Z | 2,022 | 9 | 8 | 1 | 12 | 0 | 226 | 82 | 4 | 0 | false | true | false | false | false | false | zero |
73,784,091 | Avoid getting location twice | <p>I need location in a Jetpack Compose app with two viewmodels. Viewmodel_A gets the location but the location is also needed later in viewmodel_B.
How can I pass the location from viewmodel_A to viewmodel_B or somehow avoid getting location twice. Any suggestion appreciated.</p> | I need location in a Jetpack Compose app with two viewmodels. Viewmodel_A gets the location but the location is also needed later in viewmodel_B. How can I pass the location from viewmodel_A to viewmodel_B or somehow avoid getting location twice. Any suggestion appreciated. | android|location|viewmodel | 0 | 2022-09-20T08:59:30.377Z | 2,022 | 9 | 8 | 1 | 25 | 1 | 274 | 28 | 3 | 0 | false | false | false | false | false | false | zero |
73,784,217 | Expo will not run the app Error: could not connect to TCP port 5554: cannot connect to 127.0.0.1:5554: | <p>I am using windows 10 and expo 46.0.9.
I was trying to have android emulator for expo app project. I installed Android studio and set the path in environment variables. When i run my app in VS code terminal using</p>
<pre><code>npm run start
</code></pre>
<p>and after metro bundling i pressed "a" for andr... | I am using windows 10 and expo 46.0.9. I was trying to have android emulator for expo app project. I installed Android studio and set the path in environment variables. When i run my app in VS code terminal using [CODE] and after metro bundling i pressed "a" for android. My AVD mobile appeared on screen but i... | react-native|android-studio|visual-studio-code|expo | 0 | 2022-09-20T09:09:55.540Z | 2,022 | 9 | 9 | 1 | 83 | 1 | 732 | 102 | 4 | 1 | true | false | false | false | false | false | zero |
73,784,319 | No Activity found to handle Intent regarding android TV input change | <p>Can anybody help me with this?</p>
<p>I am gonna build an apk for android TV in which by running that app, the tv input would change to a specific hdmi input.
Using the adb command, it is way easy. I just used the following adb command and it works like a charm!</p>
<pre><code>adb shell am start -a android.intent.ac... | Can anybody help me with this? I am gonna build an apk for android TV in which by running that app, the tv input would change to a specific hdmi input. Using the adb command, it is way easy. I just used the following adb command and it works like a charm! [CODE] But when I am gonna convert the adb command to an app usi... | android|android-intent | 0 | 2022-09-20T09:16:41.747Z | 2,022 | 9 | 9 | 1 | 30 | 0 | 642 | 68 | 2 | 3 | true | true | false | false | false | false | zero |
73,784,336 | Getting this error on integrating Zoom SDk in flutter | <p>I am not able to run build, I tried running flutter clean, flutter pub get, flutter pub run flutter_zoom_sdk:unzip_zoom_sdk</p>
<p>and after flutter run I am getting this error in my console</p>
<p>Currently using this version flutter_zoom_sdk: ^1.1.0+4</p>
<pre><code>FAILURE: Build failed with an exception.
* What... | I am not able to run build, I tried running flutter clean, flutter pub get, flutter pub run flutter_zoom_sdk:unzip_zoom_sdk and after flutter run I am getting this error in my console Currently using this version flutter_zoom_sdk: ^1.1.0+4 [CODE] | android|flutter|dart|gradle|sdk | 0 | 2022-09-20T09:17:58.693Z | 2,022 | 9 | 9 | 1 | 21 | 0 | 246 | 53 | 5 | 1 | true | true | false | false | false | false | zero |
73,784,342 | Is it possible to change the default configuration of the default Camera app in android? | <p>I'm creating an app in which I got one button and when clicking on it, I open the default camera app of the device using the following code:</p>
<pre><code>ActivityResultLauncher<Intent> activityResultLauncher = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), result -> {
... | I'm creating an app in which I got one button and when clicking on it, I open the default camera app of the device using the following code: [CODE] So in this case I am using MediaStore.ACTION_IMAGE_CAPTURE passed to the Intent and this allows me to take a picture and get the result back with the help of ActivityResult... | java|android|android-camera-intent | 0 | 2022-09-20T09:18:32.657Z | 2,022 | 9 | 9 | 1 | 44 | 2 | 635 | 88 | 3 | 1 | true | false | false | false | false | false | zero |
73,784,359 | Why selected category variable getting null value? | <p>i am trying to create update dialogbox within recycler adapter for updating information of current selected row everything is working fine except there is always null value for "selected_category" variable which stores values of spinner item that contains list of categories,but it seems like "parent.g... | i am trying to create update dialogbox within recycler adapter for updating information of current selected row everything is working fine except there is always null value for "selected_category" variable which stores values of spinner item that contains list of categories,but it seems like "parent.getI... | java|android|android-recyclerview|spinner|android-spinner | 0 | 2022-09-20T09:19:48.280Z | 2,022 | 9 | 9 | 1 | 29 | 0 | 408 | 50 | 5 | 1 | true | true | false | false | false | false | zero |
73,784,439 | After updating Android Studio to Dolphin update it does not show layout preview | <p>I have updated my Android studio to new Dolphin, 2021.3.1 version. But after updating the Android studio layout preview is not working. it showing blank screen.
If anyone solve this issue please help me to solve this.<a href="https://i.stack.imgur.com/Bkvmk.png" rel="nofollow noreferrer"><img src="https://i.stack.im... | I have updated my Android studio to new Dolphin, 2021.3.1 version. But after updating the Android studio layout preview is not working. it showing blank screen. If anyone solve this issue please help me to solve this. | android|android-studio|android-layout|android-layout-editor|android-studio-dolphin | -1 | 2022-09-20T09:27:04.377Z | 2,022 | 9 | 9 | 1 | 178 | 0 | 217 | 79 | 5 | 0 | false | true | false | false | false | true | negative |
73,784,500 | using firebase for chatroom but broken every time when I run the project | <p>I'm new for android studio and coding a project about using firebase for a chatroom.Then I met a problem :
every time I run the project,it's flashback and saying It's not responding,can
someone please help me for my problem!!appreciate!</p>
<p><strong>These are problems what I met:</strong></p>
<pre><code> Proc... | I'm new for android studio and coding a project about using firebase for a chatroom.Then I met a problem : every time I run the project,it's flashback and saying It's not responding,can someone please help me for my problem!!appreciate! These are problems what I met: [CODE] | java|android|android-studio | 0 | 2022-09-20T09:31:41.140Z | 2,022 | 9 | 9 | 1 | 27 | 0 | 274 | 72 | 3 | 1 | true | true | false | false | false | false | zero |
73,784,634 | Caused by: com.google.crypto.tink.shaded.protobuf.InvalidProtocolBufferException: Protocol message contained an invalid tag (zero) | <p>When launching an activity my app crashes at getEncryptedSharedPrefs:</p>
<pre><code> if(getEncryptedSharedPrefs().getString("pinSettingsLogin", "")!!.isEmpty()){
getEncryptedSharedPrefs().edit()
.putString("pinSettingsLogin" , "0000")
.apply... | When launching an activity my app crashes at getEncryptedSharedPrefs: [CODE] With this error: [CODE] Weird thing is, this if statement works on Android 10 and 11 but not on Android 12. This if statement is here because in the 'if' below I check if the pinSettingsLogin = 0000 so that It goes to a new activity by it self... | android|android-studio|kotlin | 1 | 2022-09-20T09:41:08.437Z | 2,022 | 9 | 9 | 1 | 55 | 1 | 328 | 130 | 3 | 3 | true | false | false | false | false | false | low |
73,784,790 | YoutubePlayer - onError method is not getting called | <p>I'm using YoutubePlayer to play YouTube videos. I want to show a network error dialog when the internet is not available. I'm using the AbstractYouTubePlayerListener callback to listen for network errors, but the <strong>onError</strong> method is not getting called when the network is not available.
I'm building th... | I'm using YoutubePlayer to play YouTube videos. I want to show a network error dialog when the internet is not available. I'm using the AbstractYouTubePlayerListener callback to listen for network errors, but the onError method is not getting called when the network is not available. I'm building this app for Android-T... | android|kotlin|android-tv | 0 | 2022-09-20T09:51:46.010Z | 2,022 | 9 | 9 | 1 | 20 | 1 | 330 | 52 | 3 | 1 | true | false | false | false | false | false | zero |
73,784,842 | How do I stop publishing an app published from the Google Play Console and publish a previous version? | <p>I am releasing an Android app from the Google Play console.</p>
<p>I would like to do something like withhold the most recent app from being released and release the most recent app (revert the most recent app back to pre-release) in the event that a defect is found in an app that has passed the review process and h... | I am releasing an Android app from the Google Play console. I would like to do something like withhold the most recent app from being released and release the most recent app (revert the most recent app back to pre-release) in the event that a defect is found in an app that has passed the review process and has been re... | android|google-play-console | 0 | 2022-09-20T09:55:04.810Z | 2,022 | 9 | 9 | 1 | 16 | 0 | 1,177 | 102 | 2 | 0 | false | true | false | false | false | false | zero |
73,784,925 | How can I read a no readeable ble characteristic in android studio ble | <p>Im new developer android ble application, Im trying to read a custom BLE characteristic from a custom pheriferical firmware, the method isReadable(characteristic) return false, but i was checked the same characteristic with others app ble like Serial Bluetooth terminal and data is readeable and receibed througth th... | Im new developer android ble application, Im trying to read a custom BLE characteristic from a custom pheriferical firmware, the method isReadable(characteristic) return false, but i was checked the same characteristic with others app ble like Serial Bluetooth terminal and data is readeable and receibed througth the sa... | android|bluetooth-lowenergy|android-bluetooth|bluetooth-gatt | 0 | 2022-09-20T10:01:00.330Z | 2,022 | 9 | 10 | 1 | 16 | 0 | 404 | 70 | 4 | 0 | false | true | false | false | false | false | zero |
73,785,015 | Requesting suggestions on Magnitude values: AudioRecord + Visualizer + onFftDataCapture | <h2>Problem Statement:</h2>
<p>My objective for this project is to record background audio with <strong><a href="https://developer.android.com/reference/android/media/AudioRecord" rel="nofollow noreferrer">AudioRecord Class</a></strong>, initialize <strong><a href="https://developer.android.com/reference/android/media/... | Problem Statement: My objective for this project is to record background audio with AudioRecord Class , initialize Visualizer class with audio session ID, get FFT values with FftDataCapture on Visualizer.OnDataCaptureListener , evaluate Magnitudes as per these formulas & later illustrate it as a histogram. dB values ar... | android|kotlin|fft|audiorecord|visualizer | 0 | 2022-09-20T10:08:01.913Z | 2,022 | 9 | 10 | 1 | 9 | 0 | 1,327 | 87 | 5 | 2 | true | true | false | false | false | false | zero |
73,785,035 | Android Management API Installation Policies | <p>I enrolled work profiles on 2 android tablets and apply them</p>
<pre><code>import json
policy_name = enterprise_name + '/policies/policy1'
policy_json = '''
{
"passwordRequirements": {
"passwordMinimumLength": 6,
"passwordQuality": "ALPHABETIC"
},
"applications&quo... | I enrolled work profiles on 2 android tablets and apply them [CODE] after waiting a while I found that only the Gmail and Google I/O Apps are downloaded and only google drive is available in google play! all the others are not available . why is it that only google apps can be downloaded. enter image description here e... | android|google-api|android-management-api|device-policy-manager|emm | 0 | 2022-09-20T10:09:47.837Z | 2,022 | 9 | 10 | 1 | 29 | 1 | 485 | 44 | 5 | 1 | true | false | 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.