Questions tagged [android-6.0.1-marshmallow]

Android 6.0.1 is the successor of Android Marshmallow (6.0.0), released on 22.11.2015.

Android 6.0.1 is the successor of Android Marshmallow (6.0.0), released on 22.11.2015.

Some features were added in this release like:

  • Extended „do not disturb“-mode
  • Emoji from Unicode 7 and 8
  • Shortcut-key-combination for the camera app
  • Reordered navigation buttons for Pixel C
  • Security and stability fixes

Reference (German): https://de.wikipedia.org/wiki/Liste_von_Android-Versionen

67 questions
1
vote
1 answer

Upgrading app in background using Device Policy Controller

I have a working DPC app which is the Device Owner. I have tried this on two different Android 6.0.1 devices to rule out any device/manufacturer issues. I used adb shell dpm set-device-owner com.example.dpc/.DpcDeviceAdminReceiver to make my…
fadedbee
  • 42,671
  • 44
  • 178
  • 308
1
vote
1 answer

UDP socket does not receive datagrams on Android 6 (M)

My code below runs fine on Android 5.1.1, showing the datagram received on my console. byte[] message = new byte[500]; try { String text; int server_port = 3421; DatagramPacket p = new DatagramPacket(message, message.length); …
rsc
  • 10,348
  • 5
  • 39
  • 36
1
vote
0 answers

SIGSEGV Android error while using FutureTask

While trying to use some parallel computing I encountered a following error: SIGSEGV (signal SIGSEGV: invalid address (fault address: 0x430000)) Part of my method that "produces" this error looks following: ... ... …
Infinito
  • 85
  • 1
  • 3
  • 10
1
vote
1 answer

Android 6.0.1 on Samsung: BLE discovery scan stops when phone is locked

I have developed an application that needs to run a continuous BLE scanning, because it has to check that all the surrounding peripherals are transmitting. When one or more of them stop transmitting, my app must raise an alert. I've tested it on…
1
vote
0 answers

Multiple Fingerprint accounts in android phone

My question might be silly. But I would like to create multiple accounts(50 to 100 accounts) in fingerprint embedded android device. Cos I want to use those for authentication in my application. As I know, almost of the fingerprint embedded phone…
1
vote
2 answers

Android application signed with same key store using same sharedUserId crashes due to java.lang.RuntimeException: Unable to instantiate activity

I want to make some Android applications running in the same process, so I give those apps's AndroidManifest the same sharedUserId: < manifest xmlns:android="http://schemas.android.com/apk/res/android" ... android:sharedUserId="aaa.bbb"…
Huang Wei
  • 39
  • 3
1
vote
0 answers

Sqlite database insert returns always -1 on some devices

I try to insert an entry in sqlite db, but this does not work on some devices! The insertion works with the device Huawei Nexus 6P (Android 6.0, API23) very well, but not with the device Samsung SM-G930F (Android 6.0.1, API23). Can you please help…
1
vote
1 answer

Ti.Media.showCamera not showing even if camera permissions are granted Android 6.0 Titanium

My development environment is mac osx, appcelerator sdk 5.3.0 and testing on google nexus Android 6.0. Ti.Media.showCamera not opening camera even if permissions are granted. Here is my code function openCamera(parms) { if…
1
vote
0 answers

Android: how to get contacts stored in a directory by phone number?

I'm trying to get contacts that are not localy stored on my device, but found on a Microsoft Exchange ActiveSync directory, by providing a phone number. I've followed igorepst's post that provides a simple solution for retrieving contacts by name…
1
vote
1 answer

Android marshmallow WifiManager leaking IntentReceiver

Here's the scenario, I have a LoginActivity that makes use of the WifiManager to obtain the IP address like this: WifiManager wifiManager = (WifiManager)getSystemService(Context.WIFI_SERVICE); String ipAddress =…
1
vote
1 answer

Android 6 BroadcastReceicer and call service

I developed an app that needs to call the tomtom services at a specific time. For earlier version of the Android 6 I have instantiated an alert and performed the work when it enters BroadcastReceiver. From version 6 onwards google rejects my app…
0
votes
2 answers

Android 6.0.1 application auto start after boot

I want to start my MainActivity right after device boot. I tried multiple solutions but no one works. Currently, I have this. AndroidManifest.xml
0
votes
1 answer

SqlCipher: Could not open database on Android 6.0.1

Previously I was using just SQLite and never had a problem, I just change to SQLCipher and on devices with versions 7, 8, 8.1, 9 its working fine, just with Android 6.0.1 I have the following error: net.sqlcipher.database.SQLiteException: error…
Omar Martinez
  • 440
  • 6
  • 16
0
votes
0 answers

App Bundle. Why layout expansion crashes on devices with Android 6.0.1?

We just deployed our app in App Bundle format to Google Play. Our user base is 1.2 MAU. No issues for most users. Except a number of devices with Android 6.0.1 on board. These devices crash mercilessly while trying to expand a layout for…
0
votes
0 answers

m3u8 HLS Streaming not working in Android OS versions 6.0(M) and 5.0(L)

I am using MediaPlayer for Live steaming the Video using HLS medium. The streaming file has extension .m3u8. The multimedia file is not able to provide streaming in Android OS versions MarshMallow and Lollipop in my case. Above OS version M the…