Skip to content

Instantly share code, notes, and snippets.

@yareally
Created May 12, 2015 04:15
Show Gist options
  • Save yareally/d45e0e7f8b8a3d54b8dd to your computer and use it in GitHub Desktop.
Save yareally/d45e0e7f8b8a3d54b8dd to your computer and use it in GitHub Desktop.
def launchTestingSettings(activity: FragmentActivity) {
try {
activity.startActivity(AppHelpers.getAdditionalSettings)
}
catch {
case ignored: Any ⇒
val result = TerminalCommands.launchActivity("com.android.settings", "TestingSettings")
result.onComplete { case c ⇒
if (c.getOrElse(1) != 0) new NoSupportDialog().show(activity.getSupportFragmentManager, "Sorry")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment