├── BundleIdentifierSearcher.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── hyde.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── hyde.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── BundleIdentifierSearcher.xcscheme │ └── xcschememanagement.plist ├── BundleIdentifierSearcher ├── BISAppDelegate.h ├── BISAppDelegate.m ├── BISApplication.h ├── BISApplication.m ├── BundleIdentifierSearcher-Info.plist ├── BundleIdentifierSearcher-Prefix.pch ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── README.md ├── SS.png └── appStore.icns /BundleIdentifierSearcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/project.xcworkspace/xcuserdata/hyde.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/project.xcworkspace/xcuserdata/hyde.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/project.xcworkspace/xcuserdata/hyde.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/project.xcworkspace/xcuserdata/hyde.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcschemes/BundleIdentifierSearcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcschemes/BundleIdentifierSearcher.xcscheme -------------------------------------------------------------------------------- /BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher.xcodeproj/xcuserdata/hyde.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BISAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BISAppDelegate.h -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BISAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BISAppDelegate.m -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BISApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BISApplication.h -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BISApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BISApplication.m -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BundleIdentifierSearcher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BundleIdentifierSearcher-Info.plist -------------------------------------------------------------------------------- /BundleIdentifierSearcher/BundleIdentifierSearcher-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/BundleIdentifierSearcher-Prefix.pch -------------------------------------------------------------------------------- /BundleIdentifierSearcher/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /BundleIdentifierSearcher/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BundleIdentifierSearcher/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /BundleIdentifierSearcher/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/BundleIdentifierSearcher/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/README.md -------------------------------------------------------------------------------- /SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/SS.png -------------------------------------------------------------------------------- /appStore.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/BundleIdentifierSearcher/HEAD/appStore.icns --------------------------------------------------------------------------------