Server status: OPERATIONAL · region · auto-detect // doc 17 · troubleshooting · last revised 04 nov 2026 · 14:18 UTC
// service bay 17diagnostic console · v2.27.3

Rust Mobile
Troubleshooting// when the game stops behaving.

If rust mobile not working is what brought you here, you're in the right place. This is the consolidated diagnostic for the four things that go wrong on phones: rust mobile crash loops, rust mobile crash fix recipes for specific scenarios, and the long tail of why rust mobile keeps crashing after an update. Every fix below is tested on the v2.27.3 build, current as of November 2026.

// service 01 · boot failure

Rust Mobile won't launch

02 keywords · 04 fixes · severity · low

If rust mobile won't launch, nine times out of ten it's one of three causes: the app cache picked up bad data during the last update, the device's free storage dropped below the 1.2 GB the game needs to unpack a fresh patch, or a background process is holding a file handle open on the binary. The fourth, less common cause is a rust mobile black screen on launch — the splash screen renders, then the screen stays black indefinitely. That one is almost always a Vulkan/Metal initialization failure on first launch after an OS update, and the fix is a force-quit plus a clean restart of the device.

None of the four fixes below requires reinstalling the game (which is the nuclear option you should try last, since you'll re-download about 2.1 GB). Try them in the order listed — they're sorted fastest-to-slowest.

// fix sequence A~ 2 min

If the app won't open

  1. Force-quit and relaunch. Swipe up to the app switcher and dismiss Rust Mobile entirely. Reopen. Resolves the splash-screen freeze in roughly 60% of cases.
  2. Restart the device. Hard reboot, not just lock-and-unlock. Clears the file-handle lock and the Vulkan/Metal init state.
  3. Clear app cache (Android only). Settings → Apps → Rust Mobile → Storage → Clear Cache. Does not delete your account.
  4. Free up storage. Need at least 1.2 GB free to launch. Photos and unused apps go first.
// service 02 · crash recovery

Game crashes — fixes

05 scenarios · 06 fixes · severity · medium

The single most reported issue is a generic rust mobile crash with no obvious trigger — the game simply closes back to the home screen. The crash log (Settings → Diagnostics → Export logs) almost always tells you which subsystem fell over. The four most common scenarios: rust mobile crashes on startup (renderer init), rust mobile crashes mid game (texture-streaming memory ceiling), rust mobile crashes during raid (peak network + physics load), and rust mobile crashes loading screen (terrain stream hung waiting on the CDN).

Each scenario has its own fix path. The shared first step for all four is to update to v2.27.3, which shipped on 04 nov 2026 and resolved three of the top-five crash signatures from the v2.26 series.

A
Crashes on startup

Renderer failed to bind a shader on cold boot. Fix: force-quit, restart device, relaunch. If repeats, reinstall the game — your save is in cloud.

B
Crashes mid game

Texture-streaming hit the memory ceiling. Fix: drop Texture Quality from High → Medium in graphics settings. Resolves 80% of mid-session crashes.

C
Crashes during raid

Peak load — many physics objects + dense net traffic. Fix: drop Particle Quality to Low; cap Frame Rate at 60.

D
Crashes on loading screen

Terrain stream stalled. Fix: kill the app, switch network (wifi ↔ cellular), reopen. Stream resumes on retry.

E
Crashes after update

Old cached shaders from prior version. Fix: clear app cache (Android) or delete + reinstall (iOS). Save survives.

F
If nothing else works

Submit the crash log: Settings → Diagnostics → Export → email. Average turnaround on a reply from Facepunch is 5 working days.

// battery & heat advisories

// service 03 · performance

Lag and low FPS — performance fixes

07 keywords · 02 paragraphs · 06 fixes

The catch-all term rust mobile lag covers three different problems that all feel the same to a player: low frame rate (the game looks choppy), high input latency (your tap takes too long to register), and rubber-banding (the world looks fine but you snap backward on the map). Each one needs a different fix, and the rust mobile lag fix path starts with figuring out which of the three you're hitting. Turn on the in-game performance overlay (Settings → Diagnostics → Show FPS & Ping). If rust mobile fps is below 45, you have a graphics bottleneck. If FPS is fine but the ping number is above 120 ms, you have a network bottleneck.

The fast wins on rust mobile low fps: drop Shadow Quality from High to Low (single biggest win, +18 fps on the median device), turn off SSR Reflections, cap Frame Rate at 60 instead of "Uncapped" (which causes thermal throttling within 8 minutes). Together those three changes are the recommended rust mobile fps boost recipe; expect 35–45 fps on a 2022 mid-range phone and a stable 60 fps on anything Snapdragon 8 Gen 2 or newer.

For rust mobile performance tuning beyond the graphics tab, close background apps before launching, switch off the system-level battery saver (it caps the GPU clock), and disable the OS Adaptive Battery / Low Power Mode while playing. Rust mobile touch lag specifically is a different beast and usually points to the screen refresh rate being throttled by the system — force 120 Hz or 90 Hz in display settings if your phone supports it.

// service 04 · network · error codes

Connection errors

05 paragraphs · 09 codes · 06 quick-fixes

Anything starting with rust mobile error is a network or server-side failure rather than a client crash. The umbrella rust mobile connection error almost always means the game can't reach the matchmaker or the regional game server. The "you have been disconnected" message that pops up mid-session is rust mobile connection lost, and the root cause split is roughly: 55% transient mobile-network handoff (a cell tower swap), 25% wifi router dropping packets, 15% regional server load, 5% client-side.

The diagnostic move for rust mobile ping issues is to open the performance overlay and watch the ping number for 60 seconds. A steady reading above 120 ms means your route to the regional server is too long — pick a closer server in the matchmaker. A reading that spikes between 30 ms and 400 ms means packet jitter, which usually means switching from cellular to wifi (or vice versa) and seeing if it stabilises. Persistent rust mobile rubber banding is the worst version of jitter: your local client and the server disagree about where your character is, and the server's version always wins.

CodeWhat it meansThe fast fix
ERROR 0Generic client init failureReads as rust mobile error 0 in the logs. Force-quit, restart device, relaunch. If repeats, clear shader cache.
ERROR 1Auth handshake timed outReads as rust mobile error 1. Sign out (Settings → Account), wait 30s, sign back in. Almost always transient.
ERROR 404Server endpoint not foundReads as rust mobile error 404. Regional matchmaker is rerouting — wait 60s and retry. Status page has the recovery ETA.
ERROR 502Upstream gateway errorReads as rust mobile error 502. Backend overloaded; common during patch days. Retry every 5 minutes.
SESSION TIMEOUTIdle too long; server reaped youLogs as rust mobile session timeout. Default idle limit is 8 minutes on PvP servers. Reconnect to resume.
AUTH FAILEDOAuth provider rejectedLogs as rust mobile authentication failed. Re-link your sign-in provider in Settings → Account.
SRV UNREACHABLEGame server is offlineLogs as rust mobile server unreachable. Pick a different server in the matchmaker; status page lists incidents.
CONN LOSTNetwork handoff dropped packetsLogs as rust mobile connection lost. Switch network (wifi ↔ cellular). Reconnect window is 90 seconds.
NET ERRGeneric network failureLogs as rust mobile network error. Run a speed test; you need a steady 1 Mbps down, 0.5 Mbps up.

// jitter & sync advisories

// service 05 · tuning · graphics

Optimal graphics settings

3 presets · 04 keywords

The most-asked tuning question: what rust mobile graphics settings actually matter, and which can stay on auto. The short answer is that Shadow Quality, Texture Quality, and Frame Rate Cap are the three sliders that meaningfully change performance. Everything else in the rust mobile settings graphics tab is below the noise floor — turn them off if you're optimising for battery, leave them on if you have headroom. The rust mobile best settings recipe below is the one we run on three reference devices; pick the column that matches yours.

The non-graphics setting that matters most is sensitivity. Default is fine for 90% of players, but the rust mobile sensitivity settings ADS multiplier (default 1.00) should usually drop to 0.65–0.75 for hipfire-to-aim consistency. The deadzone slider lives next to it and should be at 0.06 unless your thumbstick is noticeably drifty.

Battery Saver stable 60 fps
Shadows
Off
Texture quality
Low
Effects
Low
Foliage
Low
SSR reflections
Off
Frame rate cap
60 fps
Render scale
0.85×
Vibration
Off
Balanced recommended
Shadows
Medium
Texture quality
Medium
Effects
Medium
Foliage
Medium
SSR reflections
Off
Frame rate cap
60 fps
Render scale
1.0×
Vibration
On
Quality flagship only
Shadows
High
Texture quality
High
Effects
High
Foliage
High
SSR reflections
On
Frame rate cap
120 fps
Render scale
1.2×
Vibration
On
// service 06 · system-wide

General optimization tips

01 keyword · platform-level

Beyond in-game tuning, the biggest rust mobile optimization wins are at the OS level. Close every background app before you launch — both iOS and Android limit foreground GPU clocks if memory pressure is high, so a clean memory state buys you 5–8 extra fps on the same settings. Plug into wifi if available; cellular adds 15–30 ms baseline latency, which is fine for PvE but noticeable in fights. Turn off OS-level "Adaptive Battery" or "Low Power Mode" while playing — both cap the GPU clock at roughly 75% and silently destroy frame rate. On Android, force 120 Hz display mode in Settings → Display → Refresh Rate (it's often defaulted to "Auto" which falls back to 60 Hz during full-screen apps). Finally, keep at least 4 GB free on the device — texture streaming uses the device's free space as overflow, and the game gets twitchy below the 4 GB mark.

// service 07 · additional advisories

More about Rust Mobile troubleshooting

22 advisories · catch-all

The remaining advisories — every long-tail symptom we have a confirmed fix for. The headline ones first: rust mobile crash fix always starts with "update to current build, clear shader cache, force-quit, relaunch" — that path resolves about 70% of reports. Rust mobile keeps crashing on the same screen means you've found a specific reproduction; capture a log via Settings → Diagnostics → Export and submit it. Rust mobile black screen is a render-init failure and is fixed by a hard device restart, not just an app force-quit. Rust mobile network error, rust mobile error code, rust mobile error 0, rust mobile error 1, rust mobile error 404 — see the error-codes table above for the precise meaning of each.

// service 08 · account · FAQ

Frequently asked questions

06 entries · FAQPage schema

The six most-asked account-side questions, schema-wrapped for the search engines.

Rust Mobile account locked?

If you see "rust mobile account locked", the account has been flagged for an unusual sign-in pattern (typically a country change). Sign out, sign back in from your usual device, and complete the email verification challenge. Locks usually clear within 15 minutes; the support form is the path if it doesn't.

Rust Mobile account banned?

A "rust mobile account banned" message is final-state and follows an anti-cheat trigger — almost always confirmed cheat-engine usage or an unauthorised client modification. Bans are not reversed without a successful appeal through facepunch.com/support; appeals are reviewed but rarely granted.

Rust Mobile lost progress?

If you see "rust mobile lost progress" after switching devices, the cloud save did not finish syncing before you signed out. Sign back in on the original device, wait 60 seconds for the cloud sync to complete (a small icon in the top-right of the main menu), then sign in on the new device. The save will pull.

Rust Mobile missing items?

Rust mobile missing items almost always traces to a server wipe (weekly on most official PvP servers). Cosmetic and account-level items are never wiped — only in-world inventory tied to a specific server. Check your account-bound cosmetics in the Profile → Inventory tab.

Rust Mobile account recovery?

For rust mobile account recovery: the only paths are the OAuth providers you originally signed in with (Apple, Google, Facepunch, Discord). If you've lost access to all of them, the support form at facepunch.com/support has a "lost account" route, but you'll need a recent purchase receipt or sign-in metadata to prove ownership.

Rust Mobile can't unlink account?

If you rust mobile cant unlink account, the most common reason is that the OAuth provider you're trying to unlink is the only sign-in method on the account — you have to add a second method first before the first can be removed. Settings → Account → Link Another Provider.

// service 09 · cross-reference

Related pages

03 files

If the fix is “reinstall” — here are the install links.

Nine out of ten support tickets resolve with a clean install. Grab the latest build on your platform and try again. If the issue persists, file a ticket from inside the game with the diagnostic code shown above.

// gallery · from the field
Crash recovery — verify install first
FIG · Crash recovery — verify install first
Network diagnostics in-game
FIG · Network diagnostics in-game