for questions related to application development issues affecting just Oppo Mobile devices.
Questions tagged [oppo]
62 questions
2
votes
2 answers
unknown call types when querying device call logs
In the snippet below, I am trying to read call logs and print their call type
Cursor cursor = context.getContentResolver().query(Calls.CONTENT_URI, ...);
while (cursor.moveToNext()) {
int callType =…

zhirzh
- 3,273
- 3
- 25
- 30
2
votes
2 answers
Chinese Android Devices Killing Background Service
I am trying to run a background service in an android application. I have tried the standard way of doing it and a lot of other tweaks. The problem is that when the application is closed from recent apps, the service gets killed. This only happens…

Hamza Khurshid
- 765
- 7
- 18
2
votes
1 answer
How to prevent my app from being closed by user in/from Recent
In Phones Like Oppo and One Plus 6 some apps like Facebook and Whatsbook do not get closed from recent.
When I close all apps from recent, these 2 apps Facebook and Whatsapp remains there.
In the screenshot I have attached, we can see a lock at top…

kamlesh yadav
- 29
- 2
2
votes
0 answers
Oppo Realme 1 is not detecting in android studio 3 for Debugging
My device Oppo Realme1 is not detecting in my Android Studio 3.0.1 for debugging. I search a lot of things in web, tried to installed few software's for adb. But didn't find the official oem driver link. My USB debugging is on, also I can able to…

jeetdeveloper
- 191
- 1
- 13
2
votes
3 answers
Oppo Phone removing Device Admin Permission
In my application I am using Device admin permission, It is working fine in all devices but In Latest Oppo Phones F9, F7, F5 whenever user unlocks phone it askes to remove Admin permission Or Shows a dialogue to remove admin permissions of all…

Amin Pinjari
- 2,129
- 3
- 25
- 53
2
votes
1 answer
Background location service is not working in oppo and MI phones
In my android application,location service is implemented as background service.I have tested it with different phones(like samsung,micromax,Moto,lenovo,nexus) it works fine with all.But when i run in Oppo (colorOS) and MI (MIUI OS),my service is…

Akshay Chache
- 21
- 6
2
votes
1 answer
On Xiaomi or Oppo or Vivo phones - Application Task not working as expected
I have a small android application project (Used for a local community news app)on android, which is (or was) working on API 22 and onward. Only a issue recently came to our notice is that on Chinese phones like Xiaomi or Oppo or Vivo our…

NBaua
- 583
- 4
- 16
- 33
2
votes
0 answers
Alarm not working on some android version or device like oppo when app close mostly on lollipop
my alarm manager not working on lollipop version when app close while it's working on other Android version marshmallow, Nougat, perfectly
alarmManager = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent intent = new…

ateeq
- 21
- 3
1
vote
0 answers
Android Studio Recording button disabled on Oppo device
There is a very handy feature in Android Studio which allows to record screen of the phone while it is connected via USB cable. I use it a lot, but on one particular device it doesn't work. The button is just disabled for no particular reason and I…

GV_FiQst
- 1,487
- 14
- 30
1
vote
0 answers
How to fix : java.lang.RuntimeException: Unknown error at android.os.Process.getProcessGroup(Process.java) occurring only in Android 9 oppo devices
We have been receiving a crash which is one of the top crash having highest event counts in Firebase crashlytics.
the stacktrace does not say much, but it only happens on Android 12 Oppo devices in in the background only.
Fatal Exception:…

Vikas Pandey
- 1,115
- 1
- 15
- 25
1
vote
0 answers
Xamarin/Prism Issue with Oppo Phones with overlapping Screen
I'm encountering issues with Oppo phones using Xamarin with Prism. As included in the attached screenshot, the screens overlap as if their background is transparent. I have difficulties debugging the issue because it is perfectly fine in my phone…

Russel Claveria
- 11
- 2
1
vote
1 answer
CameraX configuration issue in oppo A5 version 11
Facing issue while configuration cameraX in oppo A5 , android version 11 works fine on all other devices.
Dependencies used:
// CameraX core library
def camerax_version = '1.1.0-beta01'
// CameraX Camera2 extensions
implementation…

Hasnat Ahmad
- 71
- 4
1
vote
0 answers
How to get current location on chinese phone?
I use Goole play service location APIs and fusedLocationClient.requestLocationUpdates(locationRequest,locationCallback,looper);
to get current location.
But sometimes it get a last location on Chinese phone like oppo、Xiaomi.(It has google plays on…

kid3652
- 11
- 2
1
vote
0 answers
Navigate users to the screen where they can turn off power saving mode
I have tried to navigate users to power saving mode change screen using the following intent
Intent(Settings.ACTION_BATTERY_SAVER_SETTINGS)
However this will not work for manufacturers like Huawei, Xiaomi, Oppo, etc
Can anyone give me the…

shanzAD
- 55
- 5
1
vote
0 answers
Oppo,xiaomi,vivo devices don't show fcm flutter backround notification
I am trying to send notifications from my app at certain times using Flutter Firebase Messaging. Notifications; The application does not appear when deleted from the background on OPPO, XIAOMI, VIVO .. devices.
As far as I research my application is…

Serife
- 21
- 4