Files
ZooMatch-GP/Assets/ASMhQ45fSDK/Plugins/iOS/CountryInfo.mm
T
2026-06-02 10:26:44 +08:00

13 lines
427 B
Plaintext

#import <Foundation/Foundation.h>
extern "C" {
__attribute__((visibility("default")))
const char* _GetDeviceCountryCode() {
@autoreleasepool {
NSLocale *currentLocale = [NSLocale currentLocale];
NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode];
return strdup([countryCode UTF8String]); // 使用strdup确保内存安全
}
}
}