Questions tagged [oneplusthree]

The OnePlus 3, available in gold or graphite, is an all-metal phone that is powered by the Qualcomm Snapdragon 820 CPU with 6GB of RAM and 64GB of storage, with no microSD expansion, but with dual-SIM capability. The battery is 3,000mAh and can be charged up to 60% in 30 minutes with the included Dash charger. The AMOLED display is 5.5" and FHD resolution. It's based on Android 6.0.1 and is powered by OxygenOS which included many enhancements to Android

26 questions
46
votes
8 answers

Screen overlay detected blocks Android permissions

I've noticed a strange issue with my Android app on my new phone. SDK 23 permission popups like external storage are blocked by the attached alert below. I initially thought this was related to my phone, but it doesn't seem to affect any of my other…
alexgophermix
  • 3,785
  • 5
  • 30
  • 54
20
votes
0 answers

How does "parallel apps" feature work on OnePlus 3 devices, and how can we use Intents properly with them?

Background Apps use Intents to open other apps, sometimes with specialized Intents. One example is this Intent, to choose a contact from WhatsApp: val WHATSAPP_PACKAGE_NAME = "com.whatsapp" val whatsAppPickIntent =…
android developer
  • 106,412
  • 122
  • 641
  • 1,128
8
votes
3 answers

OnePlus 3 & Oneplus 5 viewport size for chrome Emulated Devices

I wanted to add OnePlus 3 and OnePlus 5 as custom devices in the emulated devices list of Google Chrome. Please provide the viewport size so that I can test my website with it. Example for pixel 2 display dimentions Thanks in Advance
7
votes
1 answer

How to create emulator for ONEPLUS TWO?

User has reported a bug in OnePlus two mobile, I want to debug my application for OnePlus two mobile. I tried checking in user mobile, the bug exist. Even-though i create AVD based on the same specification, i'm not able to simulate the error in…
5
votes
2 answers

Foreground notification service not working in one plus devices

Below is the code for starting the foreground service. It is working fine for many devices like Samsung, moto, Vivo, Oppo and also with Android version nougat and oreo, but not working on One plus devices. Can anyone let me know if any extra changes…
5
votes
0 answers

How to enable auto launch of Android application programmatically for oneplus3 devices

OnePlus3 devices with Nougat version is by default blacklisting Android application because of which if you have any broadcast receiver inside your application it will never get called in case the application is cleared from background. I have not…
iqbal lone
  • 429
  • 4
  • 6
3
votes
0 answers

JobScheduler not working on (not pure) Android

I am using JobScheduler to run a periodic background service on my app. It turns out that it is working properly on a Nexus phone (android 8.1), but it is not working on a OnePlus 3t (android 8.0, OxygenOS 5.0.1) nor in a Huawei P8 when the app is…
3
votes
1 answer

Notifications not working with Android oneplus3 phone

I have this function for notification generation.I have updated the code as per oreo requirements as well. What could be the issue here. Any help is appreciated.It is working on all the other phones.I have rechecked the settings for notifications as…
Wajdan Ali
  • 159
  • 12
3
votes
1 answer

BLE Scan on android 8.0

I've developed an app that do ble scan for nearby devices (multiple kinds of beacons around). I am scanning using the BluetoothLeScanner with CALLBACK_TYPE_ALL_MATCHES and an empty ScanFilter array (since I want to get callbacks for all nearby…
3
votes
1 answer

In React Native to handle Three-finger screenshot of OnePlusthreeT

In React Native to handle Three-finger screenshot of OnePlusthree and OnePlusThreeT is going for a Crash This Error Occurs in Debug build while Three-finger screenshot gesture Note : 1. Remote Debugging is not enabled. 2. In Signed Play Store…
Sriram C G
  • 901
  • 12
  • 24
3
votes
4 answers

Ionic with crosswalk crash on open android 7

I installed my ionic app with crosswalk on android 7, crashes everytime I open it. Works on every other android version. Uninstall crosswalk, still crashes on open. Any idea? Thanks, P
2
votes
2 answers

Running a foreground service in Chinese ROMs

I've made a foreground service to constantly scan for BLE devices around me. For some reason it seems to work flawlessly on my stock android device Google pixel and also on Samsung S9+. But recently I tested the app with a Chinese ROM(Oneplus 6T,…
Divye Shah
  • 699
  • 1
  • 8
  • 20
2
votes
1 answer

Android Nougat kills my app on Oneplus

I have an application we use for research purposes that collects data from sensors in background. I use a service that registers some broadcast receivers, with startForeground() attached to a notification and also I start the service in…
phcaze
  • 1,597
  • 5
  • 25
  • 54
1
vote
1 answer

Bluetooth Gatt Connection Issue in Oneplus when device is turned off

I have an issue only in my Oneplus device, where as Pixel, Nokia works great. Here is my issue. I have BLE device and connect to it via my app using following code. public boolean connect(final String address) { if (mBluetoothAdapter == null…
1
vote
0 answers

Connect to ESP8266 WiFI (softAP) with an OnePlus 6 not working

I have a problem connecting my OnePlus 6 to the WiFi access point my ESP8266 makes. I use the WiFi.softAP() function and I have made a small web-application which is loaded upon visiting the standard IP 192.168.4.1 from a web-browser. It works fine…
1
2