Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check the Android manifest file for the libraries included in the application Project Android Studio?

I have uploaded the Application to the Google Play console and they gave me warning to update the app to the TargetSDKversion 26 or above which i have already did in the Adnroid Manifest File. However, I am concerned about the Manifest File of the External libraries i am using like glide and all.

is there a way to check the Android Manifest File of the SDK and other libraries include in the project?

I want to know the Target version they are using. Can i check it on Android Studio?

like image 517
Aman Verma Avatar asked Dec 19 '25 16:12

Aman Verma


1 Answers

You have to update the targetSdkVersion in your app's build.gradle file. The build.gradle file takes precedent over the manifest. If you still want to look at what is being merged into your manifest from external dependencies you can open your app's manifest file and click on the merged manifest tab at the bottom.

like image 132
itsBGO Avatar answered Dec 21 '25 10:12

itsBGO