Questions tagged [targetsdkversion]

83 questions
1
vote
2 answers

Android Apk Submission target

I tried to submit my updated application to playstore. When I tried upload the apk on production, there was notice saying Play Store will require that new apps and app updates target a recent Android API level. This will be required for new…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
1
vote
1 answer

How can force library to check targetSdkVersion of main app in compile time

I have some library in github that want to be more user friendly. For being more user friendly i want to check compatibility with my lib and main-app in compile-time. This is how problem came: I have updated my lib for android Oreo and if user set…
Mahdi
  • 6,139
  • 9
  • 57
  • 109
0
votes
1 answer

Issues with image permissions when upgrading to Android 13

Goal: Google Play Console is requiring me to update my app to Android 13. My app is Xamarin.Android Problem: When I update the Manifest to TargetSdk 33, I am no longer able to access images from the gallery. It does not ask for permissions…
0
votes
1 answer

Google Play Warning when update to targetSdkVersion 34

I have updated targetSdkVersion to 34 recently in my apps because of Google letter about future rejection of the apps which targeting lower than 33. The release was accepted and everything works fine, but I got this warning in the play console…
Bitlejuce Do
  • 163
  • 3
  • 14
0
votes
0 answers

Manifest merger failed when increasing targetSDK to 33

I have a multi-module Android project and I increased compile and target SDK to 33 in each module, but the problem occurs when increasing the target SDK in the app module. The error is the following:** android: exported needs to be explicitly…
0
votes
1 answer

How does my app work when targetSdk is higher than compile sdk

I would think that to target an sdk, the compile sdk would have to be at or higher than the target sdk. Can someone please help me understand what I am missing? I recently changed the target sdk to be higher than the compile sdk and the app still…
0
votes
0 answers

Video appears smaller on Android 12 only

If you make an app that plays videos in full screen, Sometimes videos appear smaller on Android 12 alone. Is this a bug unique to Android 12? Has anyone seen the same phenomenon? behavior Image I use this library for video…
0
votes
0 answers

The Play Store displays an error message such as "This app isn't available for your device because it was designed for an older version of Android."

My application is being built with targetSdk 33. When we install the application via .apk file, it works perfectly on all devices. However, when we upload to the Playstore for internal or closed testing, we encounter issues. Some devices give me an…
0
votes
0 answers

I have an apk which has SDK version of 28 can anyone help me to change it to 30 or 32?

I only own this app haven't created it. one of my employees created it. and now he resigned. can't contact him either. Now that the periods have changed. I need someone just to change its SDK version to 30. I tried to decompile the app a couple…
0
votes
2 answers

Determining the minSDKVersion for an Android app

The question is asking for guidance on determining the minimum required SDK (software development kit) version that should be set for an Android app I am looking for guidance on how to choose the appropriate minimum required SDK version to set for…
0
votes
0 answers

Android: Confused about the DDL of targetSdkVersion 33 for App updates

Android developers need up upgrade the targetSdkVersion each year. However, from this "Target API level requirements for Google Play apps", I'm confused about date for App updates We can see the highlighted section, it says: Starting August 31,…
mianlaoshu
  • 2,342
  • 3
  • 27
  • 48
0
votes
0 answers

Starting Project does not work - Error when checking AAR metadata

I can't build my project apk or start it anymore Android Studio says "error appears when checking AAR metadata" and "Recommended action: Update this project to use a newer compileSdkVersion of at least 33, for example 33. but when I changed minsdk…
VFarkas2023
  • 295
  • 1
  • 1
  • 8
0
votes
1 answer

Google Play is rejecting my app bundle update because targetSdkVersion is 30

Error: Your app currently targets API level 30 and must target It least API level 31 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 31) Possible…
TT_TT
  • 91
  • 3
  • 16
0
votes
2 answers

$http.get request does not work with API level 31

I ask for your help for a problem that I encounter with IONIC 1. When I change the API level from 30 to 31 in the config.xml file: this code is not working $http.get($scope.url) .then(function (success) { ... }, function (error) { $scope.errTXT =…
0
votes
0 answers

Internet Permisson with API Level 31

I have an app running successfully on Android for some time with targetSdkVersion 30 I'm compiling an update now with targetSdkVersion 31 as required by playstore. After changing targetSdkVersion INTERNET permission seems to be no longer…