Skip to content

Instantly share code, notes, and snippets.

View inickt's full-sized avatar

Nick Thompson inickt

View GitHub Profile
@inickt
inickt / isJailbreakInstall.swift
Created December 26, 2018 08:08
Check if iOS App is installed to /Applications (using a jailbreak)
let installPath = Bundle.main.bundleURL.deletingLastPathComponent().relativePath
let isJailbreakInstall = installPath == "/Applications"