1,474 questions
0
votes
1
answer
316
views
How do I set the minimum SDK to 19 in Android Studio?
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 ...
1
vote
0
answers
101
views
Android Studio minimum SDK API 19: Android 4.4(KitKat) Firebase Authentication Crashes on Start-up
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 ...
-1
votes
1
answer
143
views
Why NETWORK_PROVIDER is not available?
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 ...
2
votes
0
answers
60
views
VerifyError on Kitkat when code explicitly calls a default method
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 ...
-1
votes
2
answers
6k
views
How do I flash an Android ROM using my M1 Mac onto an old Android tablet?
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/...
0
votes
1
answer
635
views
FLutter A/libc: Fatal signal 4 (SIGILL) at 0x8c80cf16 (code=1), thread 4219 (flutter-worker-)
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....
1
vote
0
answers
82
views
Weird Android Memory Leak Presents On-Screen
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 ...
1
vote
1
answer
357
views
Android Kitkat 4.4 webview in Android 9
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 ...
2
votes
1
answer
151
views
Android PorterDuff masking with 9-patch is leaving a black square background in android 4.4
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....
0
votes
1
answer
148
views
Is android:drawableStart in androidx.appcompat.widget.AppCompatButton supported by android 4.4?
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/Black"
...
0
votes
1
answer
47
views
How can I make a list of items appear daily in a recycler view in android?
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?
1
vote
0
answers
156
views
Grant SD card write access
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 ...
2
votes
0
answers
515
views
Unable to install Android KitKat in Android Studio emulator
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 ...
0
votes
1
answer
307
views
Tf-Ops Not Working in Android Kitkat 4.4 (API 19)
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....
0
votes
2
answers
311
views
Is NFC NDEF supported on Kitkat?
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 ...
1
vote
0
answers
138
views
Web view in KITKAT Video autoplay not working only show the thumbnail
Setting of webview
if (Build.VERSION.SDK_INT >= 19) {
webview.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
webview.getSettings().setCacheMode(WebSettings....
-1
votes
2
answers
785
views
How to change the color of the status bar in the launcher?
I need to make the status bar black. How can I do this by editing launcher's XML files?
0
votes
1
answer
154
views
Android 4.4 - Immersive mode top bar
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
...
-1
votes
1
answer
42
views
Android TimePickerDialog Android 4.4 button wrong color
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:
...
3
votes
0
answers
371
views
How to create a new Flutter project that targets Android KitKat and Android SDK 19? Which Flutter version should I use?
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 ...
6
votes
1
answer
2k
views
Is MediaStore.MediaColumns#DATE_TAKEN only available from API level 29?
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 ...
2
votes
0
answers
185
views
how to speed up notification update delays
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 ...
1
vote
1
answer
841
views
how to use mediaSession for android api >=19
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 ...
1
vote
0
answers
205
views
css calc() not supported on Android 4.4 / calc() polyfill
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/...
0
votes
1
answer
143
views
Use JobService in Android KitKat (4.4, API 19)
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
1
vote
1
answer
1k
views
video_player dependency doesn't working api 19
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 ...
0
votes
1
answer
287
views
Android studio API 19 : google places place not found api exception 15
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 ...
4
votes
1
answer
2k
views
dlopen failed: cannot locate symbol "_ZN7android10VectorImpl19reservedVectorImpl1Ev"
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.
...
0
votes
1
answer
149
views
Calling Azure IoT File Upload from Android KitKat is returning BAD_FORMAT
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 ...
2
votes
0
answers
275
views
Rotating and scaling a drawable using android ObjectAnimator
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 ...
0
votes
1
answer
1k
views
Cordova Android App - Works on Android 7,8,9; Fails on Android 4,5, and 6
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 ...
1
vote
1
answer
893
views
making a smooth looking app launcher icon
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 ...
2
votes
1
answer
2k
views
update for using vectorDrawables with androidx
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, ...
1
vote
0
answers
464
views
Xamarin android web view showing 403 forbidden in Android kit-kat 4.4 devices
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 ...
0
votes
1
answer
932
views
Android Studio NoClassDefFoundError: android.support.v4.content.LocalBroadcastManager on KitKat
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....
0
votes
1
answer
168
views
Animate layout on different activities on android 4.4(kitkat) and higher
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 ...
1
vote
0
answers
77
views
App runs but : - E/MediaPlayer: Should have subtitle controller already set
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(...
2
votes
1
answer
778
views
How to disable method inlining in proguard?
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....
2
votes
1
answer
747
views
Strange circle around floating action button noticed in android 4.4?
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.
>...
3
votes
1
answer
490
views
SwipeRefreshLayout progress drawable doesn't hide completely on KitKat
I have something like this:
<ConstraintLayout>
<SwipeRefreshLayout>
<RecyclerView>
Constraint also has a animateLayoutChanges = "true" But I'm sure it's not a cause.
...
0
votes
1
answer
364
views
Firebase Cloud Messaging Push Notifications not working on Android Kitkat
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 ...
0
votes
1
answer
71
views
Button colorButtonNormal style not working in pre-Lollipop devices
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/...
1
vote
0
answers
140
views
I get an Android.Content.Res.Resources+NotFoundException trying to start the App
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/...
1
vote
1
answer
954
views
Room persistence library crash issue on android 4.4 kitkat
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 ...
0
votes
5
answers
2k
views
local html file showing blank on some Android devices
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 ...
2
votes
0
answers
312
views
Okhttp3.CertificatePinner error in android 4 just in release APK
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 ...
0
votes
1
answer
791
views
Black screen when playing video on Android 4.4 (API 19) kitkat
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 ...
0
votes
1
answer
180
views
problem in getting location in android 4.0 to up in android studio
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 ...
1
vote
0
answers
123
views
Heads Up Notification for Android KitKat (API 19)
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://...
0
votes
1
answer
45
views
Not able to get write permission on android device running lollipop and pre-lollipop
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="...