Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Service gives Warning every time for version

Getting warning while uploading any apk on Play Store.

You uploaded an APK that uses Google Play services version 4452000. This will only work with Android API levels of 9 and above. It is discouraged to use this Google Play services version unless you have set the minSdkVersion in your manifest to 9 or higher

What is the actually problem here?

like image 730
Pratik Butani Avatar asked Jan 10 '23 19:01

Pratik Butani


2 Answers

This version of Google Play services that you use in your app is compatible with android device that runs android 2.3(API level 9) or higher. if you want support android 2.2(API level 8), install Google Play services for Froyo from SDK manager and use that version in your project. you can set minSdkVersion to 9 if you want to use current Google Play services that you have.

like image 118
Aryan Najafi Avatar answered Jan 29 '23 20:01

Aryan Najafi


Yes actual problem is with minSdkVersion you might have used

 <uses-sdk android:minSdkVersion="8"/>

change it to

 <uses-sdk android:minSdkVersion="9"/>
like image 20
Ravi Avatar answered Jan 29 '23 20:01

Ravi