Questions tagged [android-10.0]

Android 10 (API level 29), formerly known as Android Q, is 2019's major Android OS update.

On March 13th 2019, Google released the beta version of Android Q. Android Q features link

980 questions
-2
votes
1 answer

Music player app not working on android 10

I'm working on a music player and it works on android phones running api 23 - 28 but when I try it on a phone running api 29 the app doesn't play any music. This is the logcat. avc: denied { read } for pid=20989 comm="libwatcher_bina"…
-2
votes
1 answer

Google Services Framework keeps stopping

I am trying to install Android 10 on an LG Nexus 5x (bullhead) smartphone. I installed the TWRP app, downloaded the Pixel Experience (the OS). I booted into TWRP recovery mode, and installed the OS, then rebooted. After rebooting, the phone starts…
Thomas
  • 161
  • 1
  • 2
  • 10
-2
votes
2 answers

android 10 delete folder

If I create a folder in Android 7/9, the location is: Environment.getExternalStorageDirectory() + "FOLDER_NAME" But in Android 10 I want to delete the old folder, how I can delete the folder? I have tried 3 methods so far; 1. File newFile = new…
-2
votes
2 answers

ERROR: Gradle DSL method not found: 'imlementation()'

My app is not working after I updated my android phone to Android 10. So I migrated my app to androidx. Now I am trying to update my gradle from 2.3.1 to 3.5.1. This is my build.gradle(Project:) file - buildscript { repositories { …
-3
votes
1 answer

How to write a file to external storage in Android 10 using Android Studio

File sdcard = Environment.getExternalStorageDirectory(); File file = new File(sdcard, "filename.txt");
1 2 3
65
66