From a73f0594e5900dc3e5dc3f062be1819a19ba1409 Mon Sep 17 00:00:00 2001 From: megboyzz Date: Fri, 31 Jul 2026 14:44:47 +0300 Subject: [PATCH] try to cut devmenu --- app/build.gradle.kts | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e746d33..3fcdac1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,9 +11,17 @@ android { applicationId = "com.ea.games.nfs13_mod" minSdk = 21 targetSdk = 34 - // Must match the OBB expansion file's version code - // (/sdcard/Android/obb/com.ea.games.nfs13_mod/main.1003128.com.ea.games.nfs13_mod.obb) - // for the game's OBB lookup (main...obb) to find it. + // Matches the real game's own versionCode/versionName (and the + // main.1003128.com.ea.games.nfs13_mod.obb file already on the test + // device) so this build installs as an update rather than tripping + // Android's downgrade protection. NOTE: the claim that the game's own + // code looks up an OBB file via "main...obb" is + // UNVERIFIED - grepped the entire launcher source tree (Java/Kotlin/ + // XML) and libapp.so for "obb"/"addAssetPath"/"mountObb"/ + // "StorageManager" and found zero references anywhere. This value + // just avoids the installer-level downgrade block; it is not known to + // affect asset/cache loading. See ANALYSIS.md for the still-open + // question of how this build actually locates game_cache/published/. versionCode = 1003128 versionName = "1.3.128"