This commit is contained in:
opa334
2022-09-29 21:00:11 +02:00
parent f89279b620
commit 2900226770
13 changed files with 79 additions and 43 deletions
+1 -1
View File
@@ -50,7 +50,7 @@
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>1.1</string>
<string>1.1.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIDeviceFamily</key>
+1
View File
@@ -1,5 +1,6 @@
@import Foundation;
extern void chineseWifiFixup(void);
extern NSString* helperPath(void);
extern void printMultilineNSString(NSString* stringToPrint);
extern int spawnRoot(NSString* path, NSArray* args, NSString** stdOut, NSString** stdErr);
+12
View File
@@ -4,11 +4,23 @@
#import <spawn.h>
#import <sys/sysctl.h>
@interface PSAppDataUsagePolicyCache : NSObject
+ (instancetype)sharedInstance;
- (void)setUsagePoliciesForBundle:(NSString*)bundleId cellular:(BOOL)cellular wifi:(BOOL)wifi;
@end
#define POSIX_SPAWN_PERSONA_FLAGS_OVERRIDE 1
extern int posix_spawnattr_set_persona_np(const posix_spawnattr_t* __restrict, uid_t, uint32_t);
extern int posix_spawnattr_set_persona_uid_np(const posix_spawnattr_t* __restrict, uid_t);
extern int posix_spawnattr_set_persona_gid_np(const posix_spawnattr_t* __restrict, uid_t);
void chineseWifiFixup(void)
{
Class K_PSAppDataUsagePolicyCache = NSClassFromString(@"PSAppDataUsagePolicyCache");
PSAppDataUsagePolicyCache* cache = [K_PSAppDataUsagePolicyCache sharedInstance];
[cache setUsagePoliciesForBundle:NSBundle.mainBundle.bundleIdentifier cellular:true wifi:true];
}
NSString* helperPath(void)
{
return [[NSBundle mainBundle].bundlePath stringByAppendingPathComponent:@"trollstorehelper"];
+1 -1
View File
@@ -1,6 +1,6 @@
Package: com.opa334.trollstore
Name: TrollStore
Version: 1.1
Version: 1.1.1
Architecture: iphoneos-arm
Description: An awesome application!
Maintainer: opa334
+7
View File
@@ -32,5 +32,12 @@
<true/>
<key>com.apple.private.security.storage.MobileDocuments</key>
<true/>
<key>com.apple.CommCenter.fine-grained</key>
<array>
<string>cellular-plan</string>
<string>data-usage</string>
<string>data-allowed-write</string>
<string>preferences-write</string>
</array>
</dict>
</plist>
+2
View File
@@ -1,8 +1,10 @@
#import <Foundation/Foundation.h>
#import "TSAppDelegate.h"
#import "TSUtil.h"
int main(int argc, char *argv[]) {
@autoreleasepool {
chineseWifiFixup();
return UIApplicationMain(argc, argv, nil, NSStringFromClass(TSAppDelegate.class));
}
}