Questions tagged [android-4.3-jelly-bean]

Android 4.3 (API Level 18) is an updated version of Jelly Bean. New features include improved multi-user profiles and Bluetooth low-energy support.

Google released Jelly Bean 4.3 under the slogan "An even sweeter Jelly Bean" on 24 July 2013 during an event in San Fransisco called "Breakfast with Sundar Pichai". The 2nd generation Nexus 7 tablet was the first device to officially ship with it

For developers, Android 4.3 includes the latest performance enhancements to keep your apps fast, smooth, and efficient, together with new APIs and capabilities to use in your apps.

More Info:

228 questions
2
votes
1 answer

Running new Bluetooth Low Energy sample causes RuntimeException

I've implemented the code in the Android 4.3 Bluetooth Low Energy samples to find devices. final BluetoothManager bluetoothManager = (BluetoothManager) getSystemService(BLUETOOTH_SERVICE); BluetoothAdapter…
Adam Baxter
  • 1,907
  • 21
  • 41
1
vote
1 answer

isInsideSecureHardware() return false for Android <= 7.1.1. How to force the key to be stored inside hardware?

I'm working on using KeyStore to store my app secrets securely in Android. However, I've found that for devices with Android 7.1.1 and below, the stored key using KeyStore is not 'hardware-backed?'i.e. whenever I called isInsideSecureHardware()…
1
vote
0 answers

What are we losing by supporting Jelly Bean (or older Android version) ?

Chrome recently announced ending support for Jelly Bean (API level 16). Some of our developers have a view that we should also drop support for JB and move minimum API level to KitKat (API level 19). To give you some background, we have couple of…
1
vote
1 answer

Exception "java.lang.ClassNotFoundException: Didn't find class..." on Android 4.4.2

When I try to run my existing application (using Android Studio 3.1.3) on Android 4.4.2 it is not running and showing this error: E/AndroidRuntime: FATAL EXCEPTION: main Process: my.project, PID: 9428 …
Muhammadjon
  • 1,476
  • 2
  • 14
  • 35
1
vote
0 answers

HttpUrlConnection doesn't work in Jelly Bean

I'm having an issue concerning HttpUrlConnection. It works perfectly in every OS besides JellyBean and I have no idea why. I have 2 emulators next to each other, one running Nougat, another running JellyBean API 18, in the Nougat the request goes…
Ricardo
  • 9,136
  • 3
  • 29
  • 35
1
vote
1 answer

Unable to select item from Popup window listing - android

I am using PopupWindow for selecting city. I am able to select(click) item in Marshmallow but not able to select in JellyBean 4.3 (Samsung Galaxy S3) Anybody know?
1
vote
0 answers

Custom EditTextDialog is broken in Android 4.3

I'm currently working on an application and I have and unwanted behavior on my custom EditText Dialog. Here's the XML code
girard_s
  • 119
  • 1
  • 8
1
vote
1 answer

AOSP building error: symbol not defined

I'm trying to build the cornerstone based on AOSP 4.3_r2.2. I got a lot of errors during the building like these: frameworks/base/core/res/res/values/public.xml:244: error: Symbol 'config_bluetooth_adapter_quick_switch' declared with
popo
  • 435
  • 1
  • 6
  • 13
1
vote
1 answer

Verifying internet connectivity with a ping only fails in Android 4.3 Jellybean

I have using a function to successfully detect internet connectivity in Android 4.1 to 6.0 apps, by sending a ping. (Because, remember that being connected to WiFi or the mobile network doesn't guarantee by itself, that device has actual access to…
Josh
  • 6,251
  • 2
  • 46
  • 73
1
vote
2 answers

Android not allowing manual apk install

My device is no longer allowing me to install apk files manually. The install screen shows up like normal, only it will not allow me to click the install button. I am allowed to click the cancel button, so the screen is still responsive and not…
1
vote
1 answer

ionic framework remote image not loading on android device < 4.4

Hi this issue related to Ionic framework on old android phones <4.4 It only works with existing local images, but not showing the dynamic remote images (e.g. src = 'http://server/xxxx.png') However this works on android version => 4.4. I also tried…
1
vote
0 answers

Play Radio Stream - shoutcast v2 - MediaPlayer and PrepareAsync - not working

I'm trying to write a player, that will play the audio stream - shoutcast v2 (I tried all formats to play a stream - .pls, .m3u, .mp3 and clean http://example.com:port). The following code running in the emulator, works for phone ZTE (Android 4.1.2)…
1
vote
0 answers

How to add the floating button action in android api version 18(Jelly bean) application

I want to create a floating button action and ripple effect like android 5.0 API for the buttons in my application which was developed on API 18 (Jelly bean). Is it possible to create floating button action and ripple effect in API 18. Please help…
lakshman
  • 181
  • 8
  • 20
1
vote
1 answer

Error: My app stops working when I use getRunningTasks even when @TargetApi is set to 18

As you can see in the code below I set the target api to 18, and I ran the process getRunningTasks, but it gives me an error and closes my app. @TargetApi(18) public void onCreate(Bundle savedInstanceState) { …
epiclapser
  • 271
  • 4
  • 12
1
vote
2 answers

Android 4.3 WebView will not load url with mp4

I am trying to load a webpage that has an mp4 video on it. It displays a blank screen for android 4.3 (JellyBean) but it works for all versions after that. Any idea why this is? Below is my code public class VideoSample extends ActionBarActivity { …
DMC
  • 1,184
  • 5
  • 21
  • 50