删除storkit 1

This commit is contained in:
2025-12-16 14:29:47 +08:00
parent f10ddd9a31
commit c898d16688
15 changed files with 1 additions and 727 deletions

View File

@@ -6,8 +6,6 @@
#import "AppleSignInManager.h"
#import "KBNetworkManager.h"
#import "KBAuthManager.h"
#import "FGIAPManager.h"
#import "IAPVerifyTransactionObj.h"
#import "KBAPI.h"
#import "KBUser.h"
#import "KBMyVM.h"
@@ -19,14 +17,6 @@
@implementation KBLoginVM
///
+ (void)kb_configureIAPIfNeeded {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
// [[FGIAPManager shared] setConfigureWith:[IAPVerifyTransactionObj new]];
});
}
+ (instancetype)shared {
static KBLoginVM *vm; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ vm = [KBLoginVM new]; });
return vm;
@@ -76,7 +66,6 @@
return;
}
[[KBUserSessionManager shared] handleLoginSuccessWithUser:user];
[KBLoginVM kb_configureIAPIfNeeded];
[self kb_syncKeyboardCharactersAfterLogin];
if (completion) completion(YES, nil);
// App
@@ -113,7 +102,6 @@
return;
}
[[KBUserSessionManager shared] handleLoginSuccessWithUser:user];
[KBLoginVM kb_configureIAPIfNeeded];
[self kb_syncKeyboardCharactersAfterLogin];
if (completion) completion(YES, nil);
}];