BigFile_apple.mm 362 B

12345678910111213141516171819
  1. //
  2. // BigFile_apple.cpp
  3. // cocos2d_libs
  4. //
  5. // Created by zhuge on 2021/3/3.
  6. //
  7. #include "BigFile.h"
  8. std::string BigFile::_getAndroidPackageName() {
  9. return "";
  10. }
  11. std::string BigFile::_getIOSAppId() {
  12. NSDictionary* dic = [[NSBundle mainBundle] infoDictionary];
  13. NSString* appId = [dic objectForKey:@"appid"];
  14. return [appId UTF8String];
  15. }