├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .gitmodules ├── Constants.h ├── LICENSE ├── Makefile ├── MobileGestalt.h ├── NSDistributedNotificationCenter.h ├── README.md ├── SocketRocket.patch ├── State.h ├── State.x ├── Tweak.h ├── Tweak.x ├── beepserv.plist └── control /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/.gitmodules -------------------------------------------------------------------------------- /Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/Constants.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/Makefile -------------------------------------------------------------------------------- /MobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/MobileGestalt.h -------------------------------------------------------------------------------- /NSDistributedNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/NSDistributedNotificationCenter.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/README.md -------------------------------------------------------------------------------- /SocketRocket.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/SocketRocket.patch -------------------------------------------------------------------------------- /State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/State.h -------------------------------------------------------------------------------- /State.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/State.x -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/Tweak.x -------------------------------------------------------------------------------- /beepserv.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/beepserv.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeper/phone-registration-provider/HEAD/control --------------------------------------------------------------------------------