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:

229 questions
15
votes
1 answer

Android KeyStore - How to save an RSA PrivateKey

I receive from a web service(made by myself) an RSA PrivateKey PKCS#8 encoded in a base 64 String. My Android app must save this key somewhere into the phone securely. From the 4.3 version of Android, it's possible saving keys using the new KeyStore…
FUGAZI
  • 221
  • 1
  • 3
  • 10
15
votes
1 answer

How to get the battery level after connect to the BLE device?

I am developing an application where I have to connect to Bluetooth device on Android 4.3. And I want to get the battery level by using Battery_Service and Battery_Level. public class BluetoothLeService extends Service { private static final…
15
votes
2 answers

Is the native Android BLE implementation synchronous in nature?

I remember reading in the "Guide and Hint"-doc to the Samsung BLE API (archived page): One of the most important concepts of the Samsung F/W and stack is its synchronous nature. That is, if we call for example, writeCharacteristic for a…
OneWorld
  • 16,782
  • 18
  • 79
  • 130
14
votes
11 answers

phonegap 3.0 wants android 17, but I want android 18

While experienced with phonegap and xcode, I'm new to android. I have installed phonegap 3.0 ... npm install phonegap phonegap --version 3.0.0-0.14.3 I've installed adt-bundle-mac-x86_64-20130729. The command line tools (eg: android) seem to work…
user2776896
  • 141
  • 1
  • 1
  • 4
14
votes
1 answer

Android 4.3 keychain example

I am trying to understand the keychain concept in android 4.3 and I will really appreciate it if I can get a example to understand it.
Avijeet
  • 871
  • 1
  • 8
  • 26
12
votes
2 answers

Android Target API

I try to edit some code. According to the developer note, it's a part of app in android jelly bean version. But i found a piece of code that confusing me. What does this code mean? What's happened if we don't use this or deleting this piece of…
umamlearn
  • 171
  • 1
  • 1
  • 7
12
votes
1 answer

How to connect to WPA_EAP WIFI on Android with 4.3 API

Recently Android added the ability to connect to EAP WIFI with API 18 (JellyBean 4.3). I have looked for a number of examples, but can't find any examples, and I can't get my code to connect. Everything appears to work as expected, but making the…
BlackHatSamurai
  • 21,845
  • 20
  • 84
  • 147
11
votes
2 answers

BLE Device disconnect with Android device automatically. Android BLE

I'm using Android Nexus 7 to connect a device via Bluetooth Low Energy link. I'm able to connect the device, and stay connected if I don't do any communication with the device. However, if I enable the notification of one specific characteristic by…
11
votes
1 answer

What is the proper method for reading a GATT characteristic in Android?

In attempting to read the value of a Bluetooth Low-Energy GATT characteristic in the Android API 18, I came across the following dilemma: What is the proper way to retrieve the value stored in a characteristic? And at which level of the stack should…
11
votes
3 answers

Accessing Android NotificationListenerService Settings

Android has a new notification listener service as of 4.3: http://developer.android.com/about/versions/jelly-bean.html http://developer.android.com/reference/android/service/notification/NotificationListenerService.html From the docs: Notification…
powerj1984
  • 2,146
  • 1
  • 21
  • 34
10
votes
1 answer

Android 4.3 DeviceAdmin error for non owner profile

I am using a Nexus 7 which is updated to Android 4.3. I have an application which requires Device Admin rights to Lock/ Wipe device. I have given Device Admin right to my application on Owner Profile. So when i switch to another user profile, i can…
Alok Kulkarni
  • 2,133
  • 19
  • 31
10
votes
1 answer

SecurityException: Permission Denial: opening provider

I have the following problem. We have created a Game Center Application that provides a framework to create ad hoc wifi games and manages the highscores / encounters of such games. Database access for highscores is done with a provider:
9
votes
2 answers

Android 4.3+, android:textColorHint doesn't work, hint color is always white

As the question says: When testing the app on devices running Android 4.3+ (also tested on 4.4), the color of the hints (for EditText) turns white, and no matter what color I set it to, it remains white. Since the EditText's background is white, the…
Whyser
  • 2,090
  • 2
  • 18
  • 32
9
votes
2 answers

Expandable list view move group icon indicator to right in jellyBean 4.3 version?

The below method is not working in android version jellybean 4.3. historyExpaLV.setIndicatorBounds(historyExpaLV.getRight() - 60, historyExpaLV.getWidth() - 8); Does anyone know the solution? Thanks in advance.
pavan kumar
  • 103
  • 1
  • 1
  • 6
8
votes
3 answers

Android 4.3 KeyStore - chain == null while trying to retrieve keys

Following this blog, I'm using this code to create and store a KeyPair in Android KeyStore: Context ctx = getApplicationContext(); Calendar notBefore = Calendar.getInstance(); Calendar notAfter = Calendar.getInstance(); notAfter.add(1,…
iMan Biglari
  • 4,426
  • 1
  • 30
  • 78
1
2
3
15 16