12345678910111213141516171819 |
- //
- // BigFile_apple.cpp
- // cocos2d_libs
- //
- // Created by zhuge on 2021/3/3.
- //
- #include "BigFile.h"
- std::string BigFile::_getAndroidPackageName() {
- return "";
- }
- std::string BigFile::_getIOSAppId() {
- NSDictionary* dic = [[NSBundle mainBundle] infoDictionary];
- NSString* appId = [dic objectForKey:@"appid"];
-
- return [appId UTF8String];
- }
|