├── LICENSE ├── README.md ├── SDWebImageSwiftUILICENSE ├── TrollApps ├── .DS_Store ├── TrollApps.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcuserdata │ │ │ └── hornbeck.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── hornbeck.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── TrollApps │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AndreanPrabowoIcon.imageset │ │ │ ├── Contents.json │ │ │ └── andrean-prabowo.jpg.png │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ └── ios-marketing.png │ │ ├── AppInstalleriOSIcon.imageset │ │ │ ├── AppInstalleriOSIcon.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── InteractfulIcon.imageset │ │ │ ├── Contents.json │ │ │ └── interactful.png.jpeg │ │ ├── TalhahIcon.imageset │ │ │ ├── Contents.json │ │ │ └── talhah.png │ │ ├── iOScreatorIcon.imageset │ │ │ ├── Contents.json │ │ │ └── iOScreator.png │ │ └── sourcelocationIcon.imageset │ │ │ ├── Contents.json │ │ │ └── sourceloc.jpeg │ ├── AsyncButton.swift │ ├── ContentView.swift │ ├── Extensions.swift │ ├── FeaturedView.swift │ ├── JSONStuff.swift │ ├── OtherView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── SourcesView.swift │ ├── SpringBoardFoundation.tbd │ ├── TSUtil.m │ ├── TrollApps-Bridging-Header.h │ └── TrollAppsApp.swift ├── TrollAppsUITests │ ├── TrollAppsUITests.swift │ └── TrollAppsUITestsLaunchTests.swift ├── build.command └── entitlements.plist └── assets ├── TrollApps-modified.png └── placeholder /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/README.md -------------------------------------------------------------------------------- /SDWebImageSwiftUILICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/SDWebImageSwiftUILICENSE -------------------------------------------------------------------------------- /TrollApps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/.DS_Store -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcuserdata/hornbeck.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/project.xcworkspace/xcuserdata/hornbeck.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TrollApps/TrollApps.xcodeproj/xcuserdata/hornbeck.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps.xcodeproj/xcuserdata/hornbeck.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TrollApps/TrollApps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/.DS_Store -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AndreanPrabowoIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AndreanPrabowoIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AndreanPrabowoIcon.imageset/andrean-prabowo.jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AndreanPrabowoIcon.imageset/andrean-prabowo.jpg.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppInstalleriOSIcon.imageset/AppInstalleriOSIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppInstalleriOSIcon.imageset/AppInstalleriOSIcon.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/AppInstalleriOSIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/AppInstalleriOSIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/InteractfulIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/InteractfulIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/InteractfulIcon.imageset/interactful.png.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/InteractfulIcon.imageset/interactful.png.jpeg -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/TalhahIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/TalhahIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/TalhahIcon.imageset/talhah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/TalhahIcon.imageset/talhah.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/iOScreatorIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/iOScreatorIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/iOScreatorIcon.imageset/iOScreator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/iOScreatorIcon.imageset/iOScreator.png -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/sourcelocationIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/sourcelocationIcon.imageset/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/Assets.xcassets/sourcelocationIcon.imageset/sourceloc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Assets.xcassets/sourcelocationIcon.imageset/sourceloc.jpeg -------------------------------------------------------------------------------- /TrollApps/TrollApps/AsyncButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/AsyncButton.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/ContentView.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Extensions.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/FeaturedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/FeaturedView.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/JSONStuff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/JSONStuff.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/OtherView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/OtherView.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollApps/TrollApps/SourcesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/SourcesView.swift -------------------------------------------------------------------------------- /TrollApps/TrollApps/SpringBoardFoundation.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/SpringBoardFoundation.tbd -------------------------------------------------------------------------------- /TrollApps/TrollApps/TSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/TSUtil.m -------------------------------------------------------------------------------- /TrollApps/TrollApps/TrollApps-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/TrollApps-Bridging-Header.h -------------------------------------------------------------------------------- /TrollApps/TrollApps/TrollAppsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollApps/TrollAppsApp.swift -------------------------------------------------------------------------------- /TrollApps/TrollAppsUITests/TrollAppsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollAppsUITests/TrollAppsUITests.swift -------------------------------------------------------------------------------- /TrollApps/TrollAppsUITests/TrollAppsUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/TrollAppsUITests/TrollAppsUITestsLaunchTests.swift -------------------------------------------------------------------------------- /TrollApps/build.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/build.command -------------------------------------------------------------------------------- /TrollApps/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/TrollApps/entitlements.plist -------------------------------------------------------------------------------- /assets/TrollApps-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollApps/HEAD/assets/TrollApps-modified.png -------------------------------------------------------------------------------- /assets/placeholder: -------------------------------------------------------------------------------- 1 | nwo touchwie uwu 2 | --------------------------------------------------------------------------------