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
0
votes
0 answers

Using java.awt.robot on Android app service

I'm trying to use java.awt.Robot on android application with this code Robot robot = null; try { robot = new Robot(); } catch (AWTException e) { e.printStackTrace(); } // Simulate a key…
Bruno
  • 181
  • 16
0
votes
1 answer

open failed: EACCES (Permission denied) on first run

I'm trying to write/read a file into the external storage after requesting all permissions on runtime. Manifest:
wilsonrc
  • 80
  • 1
  • 7
0
votes
0 answers

WebRTC how i can bypass write_settings permission on android 6.0.1

In my android application, I use WebRTC. However, on version 6.0.1, the application crashes due to the lack of write_settings permission. None of the manuals say it's necessary, but without it, the application does not work. I have to request this…
0
votes
0 answers

How to invoke the stock file browser/chooser in Android 5.1& 6.0

I'm building a toolkit to carry out Root management related functions (not managing root access, but simplifying some system functions), and one of them replaces various system binaries with custom versions that the user chooses. I'm having a bit of…
0
votes
1 answer

can not getting image from camera in android 6

I startActivityForResult from one of my viewpager fragment to get image from camera but it is ok in android version 5 and less but in android version 6 i have problem. @Override public void onActivityResult(int requestCode, int resultCode,…
0
votes
3 answers

Why does my app crash when using android.hardware.Camera.Open()?

I am re-writing an app for most versions of Android. The app is set to call android.hardware.Camera.Open() on launch. When the app launches it gives the error Camera Error: Could not connect to camera The permissions in AndroidManifest.xml…
stringlapse
  • 65
  • 1
  • 3
  • 14
0
votes
0 answers

onRequestPermissionsResult not getting called in signed apk, works fine in debug mode

In debug mode the app permissions work perfectly fine. When a signed apk is created with code obfuscation the onRequestPermissionsResult () is not getting called. Its done from Activity. Also targetSdkVersion is 23. public void…
0
votes
0 answers

Android App lifecycle issues after going to Homescreen and reopening (only after first app start)

When downloading and installing my app from the Play Store, I have the following issue: After I start the app for the first time I get into my LoginActivity (which has intent-filters MAIN and LAUNCHER), I log in and then start my MainActivity, that…
0
votes
0 answers

Cyanogenmod 13 brunch i9500 failed

Following the guide at https://wiki.cyanogenmod.org/w/Build_for_i9500 to build CM 13 for Samsung S4 i9500 and brunch i9500 command fails, here is the output brunch i9500 including vendor/cm/vendorsetup.sh Looking for…
rojanu
  • 1,592
  • 5
  • 20
  • 34
0
votes
1 answer

adb can't detect my sony xperia z5 compact

I'm trying to unlock the bootloader on my Sony Xperia z5 compact but when I have to plug the device on the computer, nothing appear to be attached: adb devices List of devices attached I'm under Osx Mavericks. I also tryied on Windows 7 (sp1)…
0
votes
3 answers

How can i update my app

I have buyed a Android app but Author not respons more. App was created to this versions: Android 4.0, Android 4.0.3, Android 4.0.4, Android 4.1.x, Android 4.2.x, Android 4.3.x, Android 4.4.x Now we also have 5x and 6x so my questions are: How can i…
0
votes
0 answers

Calling soap web service does not return data on Samsung Android 6.0.1 devices. But on other devices it works fine

I have a news app, which when starts fetches news items from server with Asynctask. The webservice is a .net soap webservice(.asmx). Everything works fine on other devices and Android 6.0.1 even on Android 6.0.1. It seems that, Webservice is…
0
votes
1 answer

App installation on Android 6 bypasses the customary 'Permissions' screen

Wanna make an app? - That's simple! Wanna make it work on different versions? - Learn rocket science. Have seen the following answers and more, but none helped: Answer 1 Answer 2 Answer 3 So, here's my AndroidManifest chunk: : : …
0
votes
2 answers

How to Give Multiple permissions at once in Runtime android M at my code

I want to grant multiple permissions at once..... This is my code.. this is just sample I want to Give Multiple permissions at once.. public class MainActivity extends Activity { public static final int R_PERM = 123; @Override public void…
0
votes
5 answers

The BarcodeScanner plugin in ngCordova doesnt work in Android 6

I'm developing in Ionic Framework.The barcodeScanner plugin(ngCordova) doesn't work for the newest version of Android. I suspect the plugin is not updated for this version. Any of you have found a solution? Thanks.