Questions tagged [android-12l]

9 questions
7
votes
1 answer

Android 11/12 Wireless Debugging not available when using Mobile Hotspot as the network

Before android 11, i was able to wirelessly debug apps using this method turn on the mobile hotspot in the (target) android phone connect the computer to the hotspot run adb tcpip 5555 adb connect [ip of the target phone] The problem is Android 11…
Nasib
  • 1,173
  • 1
  • 13
  • 23
1
vote
1 answer

Android 12/13 Signing images fails with error in sign_target_files_apks due to missing file vendor.img when vendor binaries are added

Attempting to build an image from AOSP 12 for OTA package, the sign_target_files_apks utility fails due to missing vendor.img file. The error occurs only after vendor binaries are added. Same thing with AOSP 13, error occurs only after vendor…
Dean
  • 7,814
  • 8
  • 30
  • 31
0
votes
1 answer

How to I request for Post Notification permission for Android 12L or lower?

We know in Android 13 and above, we can (and have to) ask for Post Notification permission as per https://stackoverflow.com/a/72981519/3286489 Also, we know that in Android 12L and earlier, the Post Notification are allowed by default. As app…
Elye
  • 53,639
  • 54
  • 212
  • 474
0
votes
2 answers

How to Integrate custom android kernel for Pixel 6a (Bluejay) of AOSP 12 version

My AOSP building steps are as follows mkdir AOSP_ROOT && cd AOSP_ROOT repo init -u ``https://android.googlesource.com/platform/manifest`` -b android-12.1.0_r12 repo sync download google_devices-bluejay-sd2a.220601.001.a1-0145bbe6.tgz copy it to…
0
votes
0 answers

Scoped Storage - file.exists always returns false after upgrade to API 32 (Android 12L)

I have the following code. I am trying to update my app from API 30 (Android 11) to 32 (Android 12L), and for some strange reason, in this code file.exists always returns false. public void getBiSymControllerProfile() { BufferedReader br =…
Pink Jazz
  • 784
  • 4
  • 13
  • 34
0
votes
0 answers

I installed the original installer package and the push notification has an overlay problem

error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Error: Command failed: gradlew.bat app:installDebug…
0
votes
1 answer

Android compileSdk 32, java.io.FileNotFoundException: /storage/emulated/0/Download/number sample.csv: open failed: EACCES (Permission denied)

I have compiled Android Project to 32(compileSdk 32) I'm trying to read the CSV files, so as per the Android Documentation, I'm getting the permission like below, I have added android:requestLegacyExternalStorage and asking the runtime permission as…
FGH
  • 2,900
  • 6
  • 26
  • 59
-1
votes
1 answer

On Android 12L, my app won't resize properly (missing resize controls at the top)

I have an app that's designed to run on Android 12 (compileSdk=32, targetSdk=32, minSdk=26). I've set android:resizeableActivity="true" on both the App, and all the Activities in the manifest. And it behaves perfectly fine on older Tablets (tested…
user496854
  • 6,461
  • 10
  • 47
  • 84