on 2025 Jul 12 1:03 AM
Hi,
We are facing an issue while trying to meet a Google Play deadline, which mandates to set the targetSDKVersion to 35. More details at https://developer.android.com/google/play/requirements/target-sdk.
MDK SDK Used: 25.6.0-002
Observation:
Even though the below values are set in gradle.properties, the target SDK version in generated build is getting set to 34.
NS_DEFAULT_BUILD_TOOLS_VERSION=35.0.0
NS_DEFAULT_COMPILE_SDK_VERSION=35
After inspecting the android build, in the generated build below observation was found. Attached screenshot for reference.
<uses-sdk
android:minSdkVersion="26"
android:targetSdkVersion="34" />
Please help to implement this policy change.
Regards,
Girish
Request clarification before answering.
Try creating an app.gradle file in your mdkproject/App_Resources_Merge/Android folder and include the following in it
android {
defaultConfig {
targetSdkVersion 35
}
}This should override the MDK default. Please be sure to fully test as this is not a combination we have tested at this time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 17 | |
| 8 | |
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.