Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
0 votes
1 answer
316 views

I'm required to make an application that is compatible with Android 4.4 devices, and I tried testing Android Studio if it'd be doable using the IDE. However, the minimum SDK that I can choose for a ...
Markus M.'s user avatar
1 vote
0 answers
101 views

I am trying to develop a firebase authentication login activity application in android studio by using android 4.4(KitKat) version. When I build my application in android studio my application builds ...
goksel demiradam's user avatar
-1 votes
1 answer
143 views

I am working on a GPS device (not a phone, no screen ...) with a custom rom. My app is a system app. NETWORK_PROVIDER is not available, only FUSED_PROVIDER and GPS_PROVIDER are enable. I check with ...
Jonathan Le Cornichone's user avatar
2 votes
0 answers
60 views

When instantiating a class that has code to explicitly call a default method for an interface that it implements, a java.lang.VerifyError is thrown. This happens on Kitkat (API 19), but Lollipop and ...
ewittman's user avatar
-1 votes
2 answers
6k views

I want to flash Android ROMs onto old Samsung tablets (Android 4.4) which Samsung hasn't allowed to be updated past Android 4.4. The issue is that I have an M1 Mac. I tried: https://flash.android.com/...
Waqqas's user avatar
  • 1
0 votes
1 answer
635 views

I am facing an error when trying to run my flutter app on android 4.4 to 5.0 devices. When app opens it crashes and shows "Unfortunatelly, app has stopped". Logcat is showing 11-12 12:03:57....
Misha Kiva's user avatar
1 vote
0 answers
82 views

I'm getting some odd (and usually random) lines come into my long-running android apps. Unfortunately I'm running Android Kitkat and I don't have some of the standard Android profiling and monitoring ...
jrhicks's user avatar
  • 15k
1 vote
1 answer
357 views

Question: Is it possible to have Android Kitkat version webview (chromium) on Android 9? Problem: I have some webpages and I want to show them in webview but the webpages are developed using old ...
asad.qazi's user avatar
  • 2,448
2 votes
1 answer
151 views

I'm trying to mask an ConstraintLayout with an 9-patch mask. In versions above Android 4.4 works normally. For Android 4.4 a black square appears on the screen like this: even with a different 9-patch....
pcruz_17's user avatar
0 votes
1 answer
148 views

<androidx.appcompat.widget.LinearLayoutCompat android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/Black" ...
Hong's user avatar
  • 18.7k
0 votes
1 answer
47 views

I want them to represent a list of daily habits, which can be checked of during the day, and will appear again the next day. In what direction should I research this?
Alex B's user avatar
  • 3
1 vote
0 answers
156 views

How can I grant SD card write access on downloaded apps by editing AndroidManifest.xml? I heard that some file managers like ES file manager has access to SD card write. I tried to add ...
dsfsfkjdkldsjfklkjkl's user avatar
2 votes
0 answers
515 views

I am on Android Studio 4.1.3 on MacOS 10.15.6 (Catalina) and I am unable to create an emulator with Android KitKat API 19-20 on it. The older system I can see available is Lollipop API 21-22. That's ...
Fabrizio Ferrari's user avatar
0 votes
1 answer
307 views

I'm trying to deploy a yolov3 model on Android Application and found that to implement this model I have to use the TF-Ops to convert the model into tflite by adding this snippet code converter....
Malik Anhar Maulana's user avatar
0 votes
2 answers
311 views

I am trying to read NFC NDEF Messages using a MobiPrint Device running on KitKat. I followed the instructions in the Docs, but I can't seem to get it to work on Kitkat. AndroidManifest.xml: <?xml ...
francis's user avatar
  • 4,565
1 vote
0 answers
138 views

Setting of webview if (Build.VERSION.SDK_INT >= 19) { webview.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); webview.getSettings().setCacheMode(WebSettings....
Arjun saini's user avatar
  • 4,202
-1 votes
2 answers
785 views

I need to make the status bar black. How can I do this by editing launcher's XML files?
Griesur's user avatar
0 votes
1 answer
154 views

Does immersive mode work differently in android 4 or am I doing something wrong? When hiding the top bar in android 4 I am getting a dark bar instead of my app scaling to the screen android 10 ...
NO_ob's user avatar
  • 143
-1 votes
1 answer
42 views

I use app theme Theme.MaterialComponents.Light.DarkActionBar in my application, when i create TimePickerDialog it looks ok on Android 5 and higher, but on Android 4.4 with Holo style it looks weird: ...
ReCursia's user avatar
  • 101
3 votes
0 answers
371 views

I need to use a native Android library that uses SDK 19, so I need to create a new Flutter project that supports SDK 19 and Android KitKat. But I don't know which Flutter version I should change to ...
EggBender's user avatar
  • 1,080
6 votes
1 answer
2k views

I am trying to use MediaStore.Images.Media.DATE_TAKEN and getting warning from Android Studio IDE that it requires API 29 (Android Q). The official Google documentation here says this was Added in API ...
avelyne's user avatar
  • 810
2 votes
0 answers
185 views

as mentioned in here: why notification update is so slow , the notification manager update is slow, I basically use the following lines of code to update the notificaiton on my music player: public ...
juztcode's user avatar
  • 1,431
1 vote
1 answer
841 views

I'm trying to incorporate MediaSession into my Service, but, using the android.media.MediaSession doesn't work because calling mediaSession.release() gives me an error saying call is available only in ...
juztcode's user avatar
  • 1,431
1 vote
0 answers
205 views

I'm developing a webview that should be supported also for Android 4.4. I built my HTML and CSS using also calc() that unfortunatly is not supported for some Android 4.4 devices(https://caniuse.com/...
Nikolay992's user avatar
0 votes
1 answer
143 views

Is there a way to use the JobService component and related components in an Android app with minSDK 19 (Android Kitkat, API level 19) ? Thanks in advance
Rodolfo Conde's user avatar
1 vote
1 answer
1k views

I am trying to play mp4 videos from network using video_player dependency in flutter(running my app only on android), the video don't playing and the app crashing after few seconds. I am trying to run ...
shay gettu's user avatar
0 votes
1 answer
287 views

I'm trying to develop an application which show nearby restaurants. Here is my code: MapsActivity.java: public class MapsActivity extends FragmentActivity implements OnMapReadyCallback { private ...
Loic Jackotin's user avatar
4 votes
1 answer
2k views

I need help, cause I'm stucked for 2 days from now and i can't find anything. I bought device: Kcosit V720 on aliexpress and they send me library with it, but it's so hard to get it work correctly. ...
lukeey's user avatar
  • 139
0 votes
1 answer
149 views

I am trying to upload a .png file to Azure IoT Hubs, but for some reason I am constantly getting BAD_FORMAT. I am using com.microsoft.azure.sdk.iot:iot-device-client:1.14.2 library as I need to using ...
fitims's user avatar
  • 333
2 votes
0 answers
275 views

I saw a few examples of using an ObjectAnimator to rotate and scale an ImageView. However I want to rotate and scale a Drawable for API below 21 (So I cannot use AnimatedVectorDrawable). It doesn't ...
Elad Benda's user avatar
  • 36.9k
0 votes
1 answer
1k views

This has been a monster of a headache trying to figure out what is going on. I have an android app that I have been developing and maintaining. My latest test devices are on android 9 and bring up ...
Bastien Auxer's user avatar
1 vote
1 answer
893 views

First of all, Blurry Launcher Icons is a bit different from what I'm asking. I designed a logo for a test app but it doesn't seem to get smooth at all. Compare google play's logos and my custom ...
juztcode's user avatar
  • 1,431
2 votes
1 answer
2k views

The solution given in this documentation page doesn't seem to be valid for androidx users(I think this because there is mention of android.support.v7.appcompat which isn't used by androidx users, ...
juztcode's user avatar
  • 1,431
1 vote
0 answers
464 views

I have made an android app on xamarin platform, I have some buttons and a web view and I am rendering website URLs on every button clicks. My app works very well on android version more than 4.4 ( I ...
Ashutosh Anand Tiwari's user avatar
0 votes
1 answer
932 views

Please do not mark this post as duplicate, I am adding this query after checking all the existing answers. The issue I am facing is java.lang.NoClassDefFoundError: android.support.v4.content....
Amit Chandra's user avatar
0 votes
1 answer
168 views

Now this specific page does describe a way to animate between layouts of different activities, but the problem is that the API is only supported for android 5.0 and higher, so I'd like to know what ...
juztcode's user avatar
  • 1,431
1 vote
0 answers
77 views

I have mediaplayer app, the app runs fine on API level 20+ .. i mean its working on Android Pie. But it wont run on Android 4.4.4 KitKat: The reason was this below: musicOne.setOnCompletionListener(...
user avatar
2 votes
1 answer
778 views

My app is crashing with this error on Android 4.4 only Fatal Exception: nTa: java.lang.IllegalAccessError: tried to access class dUa$a[] from class patient.healofy.vivoiz.com.healofy.userprofile....
Afsar's user avatar
  • 33
2 votes
1 answer
747 views

I have notice a strange shaded circle around every floating action button ,when i install this app in android 4.4. I would highly appreciate for any help. It works fine in version 6,7,and 9 as well. >...
Tim's user avatar
  • 375
3 votes
1 answer
490 views

I have something like this: <ConstraintLayout> <SwipeRefreshLayout> <RecyclerView> Constraint also has a animateLayoutChanges = "true" But I'm sure it's not a cause. ...
Victor Cold's user avatar
0 votes
1 answer
364 views

I am trying to add push notifications feature to my app using FCM [firebase cloud messaging] The notification will appear on my Motorola Moto G6 - Android 9. However, the notifications will not ...
user avatar
0 votes
1 answer
71 views

I'm using this trick to change the background color of all the application buttons: <style name="AppTheme" parent="Theme.AppCompat.Light"> <item name="colorButtonNormal">@color/...
NullPointerException's user avatar
1 vote
0 answers
140 views

when I try to start my App on Android 4.4 it cirashes in line base.OnCreate(bundle); in the MainActivity.cs with Error "Android.Content.Res.Resources+NotFoundException: 'File res/drawable/...
Kajot's user avatar
  • 1,212
1 vote
1 answer
954 views

I am working with a project which use room persistence library version 1.1.1, It is working fine on all the devices which are above android 4.4 (ex: Lollipop,marshmallow etc). but it is crashing on ...
Sorwar Hossain Mostafa's user avatar
0 votes
5 answers
2k views

My Android app needs to display an Html file that is stored on the local SD card. The html file is rather simple, here is the source code. It shows fine on some devices, but on some devices it is just ...
Ray's user avatar
  • 16.3k
2 votes
0 answers
312 views

Just in Release version and on belowe android5 app crashed on the line below: OkHttpClient.Builder httpClient = new OkHttpClient().newBuilder(); the error is: E/AndroidRuntime: FATAL ...
T.A's user avatar
  • 21
0 votes
1 answer
791 views

Im using react-native-video with react-native. I need to install and run this on an older Android version Android 4.4 (API 19) kitkat. But Im only getting a black screen when playing video on Android ...
acroscene's user avatar
  • 1,067
0 votes
1 answer
180 views

i want to get user latitude and longtude in Service , i tried in android under 4.4 and all the thins work good but in android 4.4 to up i cant get user location already i have all permissions and ...
user avatar
1 vote
0 answers
123 views

Is there anyway to implement Heads Up Notification for Android Kitkat (API 19)? Based on my findings as below link, it says that heads up notification can be disabled in android Kitkat. http://...
Arduino's user avatar
  • 325
0 votes
1 answer
45 views

I am giving READ and WRITE permission in Manifest. Here is code from manifest <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="...
PRAFUL's user avatar
  • 25

1
2 3 4 5
30