Extracted an Apk using APKTool getting the manifest.xml
like this,
<manifest xmlns:"http://schemas.android.com/apk/res/android"
android:versionCode="31"
android:versionName="3.1"
package="xxx.xxx.xxx"
platformBuildVersionCode="22"
platformBuildVersionName="5.1.1-1819727">
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="22" />
Need to know what's platformBuildVersionCode
and platformBuildVersionName
Already Checked this,What is "platformBuildVersionCode" in AndroidManifest.xml?
platformBuildVersionCode overrides and takes precedence over android:targetSdkVersion in the merged AndroidManifest. This is evidenced in the following android git commit: https://android.googlesource.com/platform/frameworks/base/+/ad2d07d. Follow this answer to receive notifications.
The Android manifest file also specifies the app's package name that helps the Android SDK while building the app. The Android manifest file provides information such as activities, services, broadcast receivers, and content providers of an android application.
Every app project must have an AndroidManifest. xml file (with precisely that name) at the root of the project source set. The manifest file describes essential information about your app to the Android build tools, the Android operating system, and Google Play.
package. The value of the package attribute in the APK's manifest file represents your app's universally unique application ID. It has to be formatted as a full Java-language-style package name for the Android app.
platformBuildVersionCode
is added by a compiler, and means a version of targetSDK
platformBuildVersionName
is a readable version name of targetSDK
version.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With