Questions tagged [android-6.0-marshmallow]

Android Marshmallow, formerly known as just "Android M", is version 6.0 of Android, is supporting API Level 23, and began shipping in October 2015.

Android Marshmallow, formerly known as just "Android M", is version 6.0 of Android, and began shipping in October 2015.

It was first shown at Google I/O 2015, with the final name confirmed on August 17th.

All API changes

Here is a summary of the major API-changes:

  • Runtime Permissions
  • Power-Saving Optimizations
  • Adoptable Storage Devices
  • Apache HTTP Client Removal
  • AudioManager Changes
  • Notifications
  • Text Selection
  • Android Keystore Changes
  • Wi-Fi and Networking Changes
  • Camera Service Changes
  • Runtime
  • Access to Hardware Identifier
  • APK Validation
  • USB Connection
  • Android for Work Changes

Official:

2168 questions
0
votes
1 answer

why restarting a device that has an application that restricts the use of UserManager.DISALLOW_USB_FILE_TRANSFER renders the device unusable?

I'm have created a kiosk application by following this guide in android developers - Lock Task Mode. The application can start itself automatically whenever the device finish booting up but the problem is whenever I restart/shutdown and start my…
0
votes
1 answer

Cannot Play audio file using installed media apps with Intent in android

The audio file not playing intent is providing null, no music apps found,while some other apps capable to do this by playing it with different music app.But here in my case it goes to the else part. This is not working on android PIE haven't tested…
0
votes
1 answer

How to debug what part of my app is causing it to force close (backward compatibility problem)

This is my first venture into writing any kind of code, let alone an android app. I created the project with the compileSdkVersion of 28, targetSdkVersion of 28 and minSdkVersion of 23. The app will only run on Android Pie and crashes on any…
0
votes
2 answers

sms body missing in newer versions of android while using Linking.openURL(React native)

The below code is working fine in android version lollipop but in newer versions of android sms body is not getting autofilled.Even after giving required permissions It opens the corresponding number with no text prefilled.Please suggest a…
Jose Kj
  • 2,912
  • 2
  • 28
  • 40
0
votes
1 answer

"android.view.InflateException" being thrown on inflating RecyclerView item's layout in onCreateViewHolder method on Marshmallow(6.0+) devices

I have created an app with RecyclerView using v7:28.0.0 support libraries and app runs fine on Android 8.0+ devices when testing. But when using Android 6.0/6.0.1 devices, app crashed with: E/AndroidRuntime: FATAL EXCEPTION:…
0
votes
0 answers

Adding external NFC reader to RCA Voyager

I have an RCA Voyager 3 that does not have NFC. I am using it for my kegbot tablet and would like to use the NFC authentication capability it has. I have an OTG cable and I would like to purchase a separate NFC USB adapter to connect via the OTG…
scott
  • 241
  • 2
  • 10
0
votes
1 answer

Can i call grant permission ADB command from app

I am having an issue granting WRITE_EXTERNAL_STORAGE runtime permission in the app. On accepting the permission app is restarting, this I figured out is because of our custom firmware. What I like to know is that, can we call ADB command for…
Shahal
  • 1,008
  • 1
  • 11
  • 29
0
votes
0 answers

show text view on lock screen using window manager in Marshmallow+

In my app i was able to show text on lock screen using these params settings params = new WindowManager.LayoutParams( WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT, …
0
votes
0 answers

How to solve massive rendering problems in Android development

I'm currently working with Xamarin for developing an android app. The structure of the app is really simple yet but a big problem appeared concerning the rendering of my main page. First, it's important to know that I'm supposed to develop for…
0
votes
2 answers

How to Avoid Killing Background Service Even App is Killed in Marshmallow?

I want to create a android app to track real time location with a android service. But when i kill the app from recent app list, Service also killed in android 6 (Huawei y3 2017). But same code works on android 8. Please help me to solve my…
0
votes
0 answers

Beacon library background scan issue on Marshmallow

I am using android beacon library for beacon scan. And My android device is running Android 6 ( Samsung Galaxy S5). In background mode, The app is not detecting beacon for 5 sec. (Not getting scan result callback). then it will work for 11…
Parth
  • 1,908
  • 1
  • 19
  • 37
0
votes
0 answers

Android Studio doesn't show imageView on api 23

I have two problems :( First thing you have to know; When i run my app on the api 27 or 28, I don't have problem. but when I try this (running) on api 23 (android 6.0) my build is crashing. And I take a error like this 'Unfortunately, Package…
Cihan
  • 41
  • 3
0
votes
2 answers

Bluetooth LE can't find any device on android 6.0

I am building an app that receives data from bluetooth device and is fully functional on a 4.4.4 android smartphone. But when I try it on version 6.0 devices it does not find the bluetooth devices. I have activated location on the phone and I have…
0
votes
0 answers

Android TV app not playing videos in Marshmallow version (6) TV Box only

I have developed an Android TV app which is based on Google leanback library. The videos does play fine on emulators as well as in Version (7) Nougat TV Box. But when we test it in Android Version (6) Marshmallow TV box then when going to play…
0
votes
1 answer

UI blocking loops behaviours differ( Oreo vs Mashmallow)

I have a small Android application which does a server call to post some User data to a server. Following is the code : private boolean completed = false; public String postData( Data data){ new Thread(new Runnable() { @Override …
1 2 3
99
100