Skip to content

Instantly share code, notes, and snippets.

@gregavola
Last active January 5, 2020 13:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gregavola/dfad5eb906529a3acd69 to your computer and use it in GitHub Desktop.
Save gregavola/dfad5eb906529a3acd69 to your computer and use it in GitHub Desktop.
troubleshooting on Untappd

Enable Developer Mode

  1. Follow these steps here: http://www.gottabemobile.com/2014/07/24/how-to-enable-developer-options-on-the-lg-g3/ to enable the developer mode on your device. Please note that instructions are for the LG G3 - but they are global in nature.
  2. Plug your device in your computer, and when the pop-up comes up asking you to Trust the computer, click "Confirm" or "Yes".

Download Android SDK Tools

  1. Go here and download the Android SDK tools: https://developer.android.com/studio/releases/platform-tools.html. MAKE SURE you only downloads the tools, not Android Studio.
  2. Pick the right download based on your platform, but if you are using Windows DO NOT select the .EXE file make sure you choose the .ZIP download
  3. Once you download the ZIP, unzip the files files in a directory.
  4. Open your command window (terminal on Mac), and navigate to the directory in where you placed the SDK.
  5. Once that has been completed, Type platform-tools/adb devices. Note that you must be path where you unzipped the contents of that folder.
  6. You should get a list of your devices attached to your computer (I assume there will be one). Copy and the ID of that device.
  7. Open Untappd, and simulate the bug.
  8. Then enter in your Terminal/Command window platform-tools/adb -s DEVICEID logcat -d > logcat1.txt
  9. Note the DEVICEID in Step 7 is the number you got from Step 6.
  10. This should save a file logcat1.txt in your directory you are working on. You can send this file to greg AT untappd DOT com.
@benoittgt
Copy link

Instead of using logcat and a file. You can also look at current logs in direct. Limited to Untappd app only.

adb logcat | grep -F "`adb shell ps | grep com.untappdllc.app  | tr -s [:space:] ' ' | cut -d' ' -f2`"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment