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
5
votes
1 answer

How to set key size for KeyPairGeneratorSpec on API 18?

Android Keystore (with KeyPairGeneratorSpec etc) was introduced in API level 18. However, the method KeyPairGeneratorSpec.Builder.setKeySize() was only introduced in API level 19. While supporting API level 18 (Android 4.3), is it possible to set…
Jonik
  • 80,077
  • 70
  • 264
  • 372
5
votes
2 answers

How to catch this exception in Android webview?

Due to a bug in Android 4.3, my app crashes when trying to load certain webpages in webview The stack trace is like this: 09-16 14:16:48.221: E/AndroidRuntime(22487): FATAL EXCEPTION: WebViewCoreThread 09-16 14:16:48.221: E/AndroidRuntime(22487):…
Atul Goyal
  • 3,511
  • 5
  • 39
  • 59
5
votes
1 answer

Video capture in Android 4.3 using Camera app intent

How do you capture Video by calling the Android camera app using an intent in 4.3. I had it working in 4.2 and below. Even Google's sample is broken. Is this a bug? Or has Google changed how they return recorded video. Image capture still works. I…
kasgoku
  • 5,057
  • 5
  • 20
  • 20
5
votes
0 answers

android API 18 ble writeCharacteristic not working

I am working with the new ble api of android 4.3. I am able to scan, connect, discover characteristics e.t.c from my LE device. In case of reading characteristic value, for some characteristics, i am getting responses and for some others i am…
profused
  • 143
  • 3
  • 8
4
votes
0 answers

Exoplayer decoder init failed when playing Admob reward videos

I'm testing reward videos from Admob and I'm getting the error bellow. The code is correct because it works on a Samsung S7. The error accurs when running on a Samsung S3 mini with Jelly Bean 4.3.1. I/Ads: Starting ad request. I/Ads: This request is…
cpr4t3s
  • 1,345
  • 1
  • 11
  • 15
4
votes
0 answers

React Native: fetch requests stop working on Android

My application fetch requests run fine for about 1 or 2 minutes and then completely stop. Using Charles Proxy that the fetch requests are not being made from the app. The fetch promise does not hit the then or the catch. What could stop fetch from…
4
votes
0 answers

Crash with hardware acceleration of fragment transition animations

I am using a slide-in / slide-out animation for fragment transitions. To smoothen out these animations I am using hardware acceleration by setting the layer type of the fragment to View.LAYER_TYPE_HARDWARE before the animation and back to…
4
votes
1 answer

Android Jelly Bean MeasureSpec bug

I was having this problem: https://stackoverflow.com/questions/20121696/slidingmenu-bug-in-android-4-3 But now I've fixed and I want to share my solution 'cause probably someone will need it too. I'll answer this question myself bellow.
GuilhE
  • 11,591
  • 16
  • 75
  • 116
4
votes
0 answers

Using getConnectedDevices() to get the BLE connected Device is not working in Android 4.3

I am developing an application where I have to connect to Bluetooth device on Android 4.3. And I want to use getConnectedDevices() like the following code to get the connected Device after connect BLE device using by mBluetoothGatt.connect(), but…
Wun
  • 6,211
  • 11
  • 56
  • 101
4
votes
2 answers

bluetooth low energy notification

i am trying to read temperature value from health profile.health thermometer service. according to official google ble devlopment page when i try to notify a health thermometer characteristic to read temperature i try to write descriptor value…
4
votes
1 answer

After upgrading my nexus 4 to 4.3, adb in not recognizing it

My device driver for nexus 4 is not installing on my windows, after trying several times. My sdk tools and platform tools are updated to the latest version.
Harshit Gupta
  • 335
  • 2
  • 14
4
votes
1 answer

Get a list of external storage in Android 4.3

I've been scanning /etc/vold.fstab to get a list of external storage. It works fine until Android 4.3 that Google removed the file. I know that a unified /fstab.* file is now used but which is inaccessible without root. So in Android 4.3, what…
Andy Wong
  • 51
  • 5
4
votes
2 answers

NotificationListenerService get Notification Icon?

In a Service extending the new (SDK18, JB-4.3) NotificationListenerService, I'd like to get the Notification's status bar icon. mStatusBarNotification.getNotification().icon returns the resource id of the status bar drawable, but that resource id…
Nick
  • 3,504
  • 2
  • 39
  • 78
3
votes
1 answer

DrawerLayout not working with Android 4.4 & SurfaceView

Today I had one of those "android" moments again, which left me absolutely clueless. I have an app which consists of a DrawerLayout, which includes a RelativeLayout as container for a SurfaceView (surfaceViewContainer) and a second ViewGroup…
3
votes
4 answers

OnFrameAvailable callback is not coming

I am new to android app and I am trying Camera using SurfaceTexture. The call back for OnFrameAvailable() is not being called... Please suggest me a solution. The code is below. What is missing in this? I am not sure if I have made the correct call…