[android-developers] Fatal signal 11 (SIGSEGV) at 0x00000008 (code=1), thread 4079 (Thread-567)

2014-04-08 Thread Surabhi Jain
Hi all, I am creating a blue tooth app. When socket connection get close at that time I am getting Fatal Exception. How can I handle Fatal Exception ? Please help me. -- Thanks Regards Surabhi Jain -- You received this message because you are subscribed to the Google Groups Android

[android-developers] start or update application from service

2014-04-08 Thread Jia Li
In my app, I need to receive push notification and open the application to do things. I have managed to register with the GCM and received message with IntentService. I want to know how to do the things below from the IntentService. 1. How to detect if the application is in foreground,

[android-developers] com.samsung.* Android permissions (OEM and proprietary non-android.permission.* permissions)

2014-04-08 Thread smoogli
Hi, which Samsung permissions (or other OEM and proprietary - non android.permission.* permissions) are built-in and available today on Android phones? e.g., any such permissions for using Samsung KNOX? and where\how is it possible to get information on them, either online or on-device?

[android-developers] Creating public files

2014-04-08 Thread info.sktechnol...@gmail.com
I have been away from developing for a while and have lost track of the changes that have been made in file access rules. It used to be that the WRITE_EXTERNAL_STORAGE permission gave full access to create public files. When my Note 3 was updated to KitKat my app lost the ability to write to

Re: [android-developers] Creating public files

2014-04-08 Thread Enrique López Mañas
The best reference is probably the Android Developers section about the storage options. http://developer.android.com/guide/topics/data/data-storage.html 2014-04-08 12:41 GMT+02:00 info.sktechnol...@gmail.com info.sktechnol...@gmail.com: I have been away from developing for a while and have

Re: [android-developers] Creating public files

2014-04-08 Thread Kostya Vasilyev
This is a nice unofficial write-up: http://www.androidpolice.com/2014/02/17/external-blues-google-has-brought-big-changes-to-sd-cards-in-kitkat-and-even-samsung-may-be-implementing-them/ -- K On Tuesday, April 8, 2014 2:46:47 PM UTC+4, Enrique López Mañas wrote: The best reference is

Re: [android-developers] com.samsung.* Android permissions (OEM and proprietary non-android.permission.* permissions)

2014-04-08 Thread Nikolay Elenkov
On Tue, Apr 8, 2014 at 7:01 PM, smoogli roy.ben.ha...@gmail.com wrote: Hi, which Samsung permissions (or other OEM and proprietary - non android.permission.* permissions) are built-in and available today on Android phones? e.g., any such permissions for using Samsung KNOX? and where\how is

[android-developers] Strange behavior of wifi state intents when background scanning is enabled.

2014-04-08 Thread Sebouh
When scanning always available is enabled in Android settings, enabling airplane mode causes wifi disabled to be broadcast. When airplane mode is disabled again, wifi enabled doesn't get broadcast, even though (I'm pretty sure) background wifi gets enabled again. Why is this? It should either

Re: [android-developers] start or update application from service

2014-04-08 Thread TreKing
On Tue, Apr 8, 2014 at 4:21 AM, Jia Li jarlym...@gmail.com wrote: 1. How to detect if the application is in foreground, background or not running? Why do you need to do this? You get a GCM message, you respond to it. Whether the app is foreground or background (not running is not an option -