This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Starting bootstrapping" | |
# Request admin password and run a keep-alvie | |
# to keep using sudo until the script has finished | |
echo " We need administrator privileges for the execution of this script..." | |
sudo -v | |
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | |
# ============================================== | |
# Apps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Main ViewController (ViewController.swift) | |
import UIKit | |
class ViewController: UIViewController { | |
//Changed the class and variable names to hide the company's and project's identity | |
let myAPI: MyCustomAPI = MyCustomAPI() | |
override func viewDidLoad() { | |
super.viewDidLoad() |