Questions tagged [android-api-33]

6 questions
1
vote
1 answer

Flutter API Level 33 Update Error (Already Evaluated)

I have an application currently running and live. Google made it mandatory to update the API level to 33 and later. However, I get various errors, if I solve one problem, another problem arises. I even created a flutter project from scratch and only…
muratapps
  • 61
  • 1
  • 4
0
votes
0 answers

Soundpool and API33

I'm trying to test my old apk with API33 emulator but sound doesn't work, up to API31 works well. bt_sound = (ImageButton) findViewById(R.id.btn_sound); bt_sound.setOnClickListener(new View.OnClickListener() { public void onClick(View v)…
lucignolo
  • 223
  • 2
  • 12
0
votes
0 answers

Accessing multi lingual .properties files in Android API 33

Attached screenshots shows my project folder structures, properties files stored like this And I am able to access those properties files by following code, able to access But after I changed my app to API 33 and generated signed APK in release…
Vinod
  • 1
  • 1
0
votes
0 answers

NOT able to turn off the bluetooth when android api level is 33 and Android OS is 13 but the same code is working on andorid 13 with API 31

NOT able to turn off the bluetooth when android api level is 33 and Android OS is 13 but the same code is working on andorid 13 with API 31 public void toggleBluetooth(boolean enable) { try{ if (enable && !bluetoothAdapter.isEnabled()) { final int…
0
votes
1 answer

Permission to read excel file in shared DOCUMENTS folder always denied, after Upgrading to API 33

Okay, I know there are a lot of similar threads regarding this issue but I haven't found one which can solve my issue yet. I have been struggling with this issue for days. A bit of the background, my apps will read & write and excel file called…
0
votes
0 answers

How to make WearableListenerService working in Android 13?

WearableListenerService stopped working in API 33 leading to a situation when WearOS devices are not able to send message to a phone. Google was aware about the issue and stated that it's fixed, but it's not. I could confirm that the service in…
Oleg Gryb
  • 5,122
  • 1
  • 28
  • 40