This file contains 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
extension UIApplication { | |
class func appVersion() -> String { | |
return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String | |
} | |
class func appBuild() -> String { | |
return Bundle.main.object(forInfoDictionaryKey: kCFBundleVersionKey as String) as! String | |
} |
This file contains 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
// UIActivityTypes | |
NSString * const UIActivityTypePostToInstagram = @"com.burbn.instagram.shareextension"; | |
NSString * const UIActivityTypeFacebookMessenger = @"com.facebook.Messenger.ShareExtension"; | |
NSString * const UIActivityTypeWhatsApp = @"net.whatsapp.WhatsApp.ShareExtension"; | |
NSString * const UIActivityTypeTelegraph = @"ph.telegra.Telegraph.Share"; | |
NSString * const UIActivityTypeGmail = @"com.google.Gmail.ShareExtension"; | |
NSString * const UIActivityTypeTencent = @"com.tencent.mqq.ShareExtension"; | |
NSString * const UIActivityTypeViber = @"com.viber.app-share-extension"; | |
NSString * const UIActivityTypeTumblr = @"com.tumblr.tumblr.Share-With-Tumblr"; | |
NSString * const UIActivityTypeSkype = @"com.skype.skype.sharingextension"; |
This file contains 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
// | |
// Obfuscator.swift | |
// | |
// Created by Dejan Atanasov on 2017-05-31. | |
// | |
import Foundation | |
class Obfuscator: AnyObject { | |
This file contains 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
// | |
// ContentView.swift | |
// DeleteMe | |
// | |
// Created by Chris Eidhof on 02.02.21. | |
// | |
import SwiftUI | |
/* |