cloudquit

This commit is contained in:
√(noham)²
2026-08-20 16:07:05 +02:00
parent ec1b0a17f0
commit 965bfcdeff
5 changed files with 44 additions and 0 deletions

3
CloudQuit/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.theos/
packages/
.DS_Store

View File

@@ -0,0 +1,7 @@
{
Filter = {
Bundles = (
"com.example.cloudquit",
);
};
}

13
CloudQuit/Makefile Normal file
View File

@@ -0,0 +1,13 @@
TARGET = iphone:latest:14.0
INSTALL_TARGET_PROCESSES = com.example.cloudquit
ARCHS = arm64
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = CloudQuit
CloudQuit_FILES = Tweak.x
CloudQuit_CFLAGS = -fobjc-arc
CloudQuit_FRAMEWORKS = Foundation
include $(THEOS_MAKE_PATH)/tweak.mk

12
CloudQuit/Tweak.x Normal file
View File

@@ -0,0 +1,12 @@
#import <substrate.h>
#import <Foundation/Foundation.h>
// iOS 16+ Crash Fix
%hook CKContainer
+ (id)defaultContainer {
return nil;
}
+ (id)containerWithIdentifier:(id) arg1 {
return nil;
}
%end

9
CloudQuit/control Normal file
View File

@@ -0,0 +1,9 @@
Package: xyz.nohamr.cloudquit
Name: CloudQuit
Version: 1.0.0
Architecture: iphoneos-arm
Description: Fixes iOS 16+ CloudKit crashes by returning nil from CKContainer methods.
Maintainer: NohamR
Author: NohamR
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000)