├── LicenseNotice_XcodePlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xiaohaibo.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── LicenseNotice_XcodePlugin.xcscheme └── xcuserdata │ └── xiaohaibo.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LicenseNotice_XcodePlugin ├── AddLicenseWindowController.h ├── AddLicenseWindowController.m ├── AddLicenseWindowController.xib ├── Info.plist ├── LicenseNotice_XcodePlugin.h └── LicenseNotice_XcodePlugin.m ├── README.md └── screenshot.png /LicenseNotice_XcodePlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/xcuserdata/xiaohaibo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/xcuserdata/xiaohaibo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/xcuserdata/xiaohaibo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/project.xcworkspace/xcuserdata/xiaohaibo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin.xcodeproj/xcshareddata/xcschemes/LicenseNotice_XcodePlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/xcshareddata/xcschemes/LicenseNotice_XcodePlugin.xcscheme -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin.xcodeproj/xcuserdata/xiaohaibo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin.xcodeproj/xcuserdata/xiaohaibo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/AddLicenseWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/AddLicenseWindowController.h -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/AddLicenseWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/AddLicenseWindowController.m -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/AddLicenseWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/AddLicenseWindowController.xib -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/Info.plist -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/LicenseNotice_XcodePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/LicenseNotice_XcodePlugin.h -------------------------------------------------------------------------------- /LicenseNotice_XcodePlugin/LicenseNotice_XcodePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/LicenseNotice_XcodePlugin/LicenseNotice_XcodePlugin.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxhp/LicenseNotice_XcodePlugin/HEAD/screenshot.png --------------------------------------------------------------------------------