diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-07-11 21:00:48 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 16:09:23 -0400 |
commit | b02c5459e19b2ac37b13a9d011dd20ea9a5fe922 (patch) | |
tree | 5c7da3035b278b8eec702ac56c8802f1e5debd45 /src/SMAPI.Web/Views/LogParser/Index.cshtml | |
parent | 6f83af0c2130784233fd53dbad2a1d902b43a6c1 (diff) | |
download | SMAPI-b02c5459e19b2ac37b13a9d011dd20ea9a5fe922.tar.gz SMAPI-b02c5459e19b2ac37b13a9d011dd20ea9a5fe922.tar.bz2 SMAPI-b02c5459e19b2ac37b13a9d011dd20ea9a5fe922.zip |
add Android instructions to log parser
Diffstat (limited to 'src/SMAPI.Web/Views/LogParser/Index.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index dff37d7d..1b40cfa9 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -67,10 +67,20 @@ else if (Model.ParsedLog?.IsValid == true) <h2>Where do I find my SMAPI log?</h2> <div>What system do you use?</div> <ul id="os-list"> + <li><input type="radio" name="os" value="android" id="os-android" /> <label for="os-android">Android</label></li> <li><input type="radio" name="os" value="linux" id="os-linux" /> <label for="os-linux">Linux</label></li> <li><input type="radio" name="os" value="mac" id="os-mac" /> <label for="os-mac">Mac</label></li> <li><input type="radio" name="os" value="windows" id="os-windows" /> <label for="os-windows">Windows</label></li> </ul> + <div data-os="android"> + On Android: + <ol> + <li>Open a file app (like My Files or MT Manager).</li> + <li>Find the <code>StardewValley</code> folder on your internal storage.</li> + <li>Open the <code>ErrorLogs</code> subfolder.</li> + <li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li> + </ol> + </div> <div data-os="linux"> On Linux: <ol> |