Aman Verma
Aman Verma

Reputation: 3325

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?

Upvotes: 2

Views: 1955

Answers (2)

Mohamed Khaled
Mohamed Khaled

Reputation: 157

On Android Studio, simply go to the "Merged Manifest" by going to your AndroidManifest.xml in app module then navigate to it and choose the library you want to check its target version

Upvotes: -1

itsBGO
itsBGO

Reputation: 49

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.

Upvotes: 1

Related Questions