Questions tagged [android-7.1-nougat]

Android 7.1 Nougat MR1 (API level 25), successor of Android 7.0 Nougat.

257 questions
0
votes
0 answers

android nougat accessibility permission

On Android Lollipop and below I could ask the user to grant me an accessibility permission to prevent the uninstall of the APK file. On the new OS version "Nougat" I've found out that the user can uninstall the application, in-fact the user can…
0
votes
1 answer

Unparseable date exception in Android API 25 but not 22 or 23

I have been developing my app and testing with emulators and devices with Api 22 and 23 but when I tested on a device with API 25 or Version 7.1 Nougat today I am suddenly experiencing the following Exception: W/System.err: java.text.ParseException:…
Carl Poole
  • 1,970
  • 2
  • 23
  • 28
0
votes
0 answers

UI not working after Nougat update

On android 7+(nougat) running phone my ui does not respond until I run my code in debug mode but was working fine for devices running android version <7 Here's activity code for OnCreate: super.onCreate(savedInstanceState); …
gauravmehra
  • 149
  • 2
  • 11
0
votes
1 answer

Appium is not supporting Android 7.1

I am using Appium Version 1.4.16 in Windows 7, When I try to connect Android with OS 7.1 getting below error, A new session could not be created. (Original error: Command failed: C:\Windows\system32\cmd.exe /s /c…
0
votes
1 answer

Azure Active Directory Authentication Library - not working in Google Pixel (Android Nougat 7.1.1)

I try to run my Android app using the ADAL in the Android Google Pixel which runs on Android version 7.1.1.In the android Nougat 7.1.1, it gives the following error. I Don't know whether the ADAL supports 7.1.1. The error in the android nougat 7.1.1…
0
votes
1 answer

Android Nougat Webview screen width

Hello I am having an issue with the Webview element in Android Nougat. I want the content to not be bigger than the screensize and it works perfectely in older Android versions but not in the latest one. If have this in my…
Glennmen
  • 33
  • 3
  • 12
0
votes
1 answer

Why I can't use Dynamic shortcuts in my app? I got a IllegalStateException: Launcher activity not found for package

when I using Dynamic shortcuts, I got a Exception: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.waterbottle.v1/com.waterbottle.v1.NovaMainActivity}: java.lang.IllegalStateException: Launcher activity not found for package…
0
votes
1 answer

Shared Element Transition not working on Android Nougat (API 25)

Facing problems with Shared Element transition animation on Android 7 (Nougat) In my case Activity A calls Activity B using shared element transition and pressing back on B finishes it and shows A. Now on A onStart is never called. Working fine on…
Passiondroid
  • 1,573
  • 1
  • 16
  • 28
0
votes
1 answer

Good approach to achieve Android facebook messenger type input keyboard

I'm developing chat app like Facebook messenger where I need to create input keyboard like Facebook messenger app provides. Primarily I thought I should do it using tab layout with view pager. On github I found one third party library which…
0
votes
2 answers

Pressing allows after requesting permission for ACCESS_COARSE_LOCATION doesn't turn on location - nougat

Lastly I ran into problem that, I can't scan for beacons because of lack of ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION. I tried to fix it by using code found here, but it actually help me partially. When this view appears I click allow. After…
MyWay
  • 1,011
  • 2
  • 14
  • 35
0
votes
1 answer

How to save access point settings in android 7 programatically

I'm working on an app that creates a hotspot as soon as it starts up. This has benn working fine until Android 7 Nougat came. I'm using the WifiApManager class. Like I said everything worked perfect but when using API 25 the hotspot is created with…
kEbO
  • 11
  • 3
0
votes
1 answer

Cannot create calendar event in android N

I'm facing a weird issue in my full calendar app starting in Android N. I would like to know if I'm missing something or if there's something wrong with the calendar provider on Android N. I'm using the calendar content provider to manage the…
0
votes
1 answer

Android 7.1 denied accessing to proc file. How can we get the running processes?

Android 7.1 denied accessing to proc file. How can we get the running processes ?
ZhangTengyuan
  • 1,295
  • 1
  • 8
  • 8
0
votes
0 answers

PipedOutputStream write speed on android 7

I have a downloader class which get an InputStream and OutputStream and works like this: while (isCanceled() == false) { synchronized (inputStream) { readCount = inputStream.read(readBuffer); } if (readCount < 0) { …
0
votes
1 answer

Android API 25: Permission error while saving to PRIVATE storage

Prior to API 25, it was no problem saving a file to the private app storage. However, with compileSdkVersion and targetSdkVersion set to 25, this is not possible - whenever I am trying to read/write a file (which is in the app-private storage), I…
techfly
  • 1,826
  • 3
  • 25
  • 31