try to cut devmenu

This commit is contained in:
2026-07-31 14:44:47 +03:00
parent feb32247ed
commit a73f0594e5
+11 -3
View File
@@ -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.<versionCode>.<applicationId>.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.<versionCode>.<package>.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"