Now the build log shows up, but still can’t bundle iOS application.
ld: warning: directory not found for option '-L/usr/local/extender-production/platformsdk/iPhoneOS15.2.sdk/usr/include/c++/v1/usr/lib'
ld: warning: object file (/var/folders/pf/p5g2vb2j0yx1x6vlmxdppc700000gn/T/job17933096945945262348/upload/extension-admob/lib/ios/GoogleAppMeasurement.framework/GoogleAppMeasurement(APMAdExposureReporter.o)) was built for newer iOS version (9.0) than being linked (8.0)
/extension-admob/lib/ios/GoogleMobileAds.framework/Headers/GADMediaView.h
Line 27: In file included from upload/extension-admob/src/admob_ios.mm:5:
In file included from /var/folders/pf/p5g2vb2j0yx1x6vlmxdppc700000gn/T/job17933096945945262348/upload/extension-admob/lib/ios/GoogleMobileAds.framework/Headers/GoogleMobileAds.h:40:
In file included from /var/folders/pf/p5g2vb2j0yx1x6vlmxdppc700000gn/T/job17933096945945262348/upload/extension-admob/lib/ios/GoogleMobileAds.framework/Headers/GADCustomNativeAd.h:11:
no 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed [-Wobjc-property-no-attribute]
@property(nonatomic, nullable) GADMediaContent *mediaContent;
^
/extension-admob/src/admob.cpp
Line 5: 'DLIB_LOG_DOMAIN' macro redefined [-Wmacro-redefined]
#define DLIB_LOG_DOMAIN LIB_NAME
^
Line 5: previous definition is here
#define DLIB_LOG_DOMAIN "ADMOBEXT"
^
Line 36: format string is not a string literal (potentially insecure) [-Wformat-security]
luaL_error(L, msg);
^~~
Line 36: treat the string as an argument to avoid this
luaL_error(L, msg);
^
"%s",
Line 57: format string is not a string literal (potentially insecure) [-Wformat-security]
luaL_error(L, msg);
^~~
Line 57: treat the string as an argument to avoid this
luaL_error(L, msg);
^
"%s",
Line 78: format string is not a string literal (potentially insecure) [-Wformat-security]
luaL_error(L, msg);
^~~
Line 78: treat the string as an argument to avoid this
luaL_error(L, msg);
^
"%s",
Line 272: enumeration values 'EVENT_ID_DEACTIVATEAPP', 'EVENT_ID_ICONIFYAPP', and 'EVENT_ID_DEICONIFYAPP' not handled in switch [-Wswitch]
switch(event->m_Event)
^
Line 272: add missing switch cases
switch(event->m_Event)
^
/extension-admob/src/admob_ios.mm
Line 119: format string is not a string literal (potentially insecure) [-Wformat-security]
NSLog([NSString stringWithFormat:@"Error domain: \"%@\". %@", [error domain], [error localizedDescription]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Line 119: treat the string as an argument to avoid this
NSLog([NSString stringWithFormat:@"Error domain: \"%@\". %@", [error domain], [error localizedDescription]]);
^
@"%@",
Line 179: format string is not a string literal (potentially insecure) [-Wformat-security]
NSLog([NSString stringWithFormat:@"Error domain: \"%@\". %@", [error domain], [error localizedDescription]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Line 179: treat the string as an argument to avoid this
NSLog([NSString stringWithFormat:@"Error domain: \"%@\". %@", [error domain], [error localizedDescription]]);
^
@"%@",
Line 239: 5 enumeration values not handled in switch: 'SIZE_ADAPTIVE_BANNER', 'SIZE_FLUID', 'SIZE_SEARH'... [-Wswitch]
switch (bannerSizeConst) {
^
Line 239: add missing switch cases
switch (bannerSizeConst) {
^
Line 241: 'kGADAdSizeBanner' is deprecated: Use GADAdSizeBanner [-Wdeprecated-declarations]
bannerSize = kGADAdSizeBanner;
^
Line 244: 'kGADAdSizeFullBanner' is deprecated: Use GADAdSizeFullBanner [-Wdeprecated-declarations]
bannerSize = kGADAdSizeFullBanner;
^
Line 247: 'kGADAdSizeLargeBanner' is deprecated: Use GADAdSizeLargeBanner [-Wdeprecated-declarations]
bannerSize = kGADAdSizeLargeBanner;
^
Line 250: 'kGADAdSizeLeaderboard' is deprecated: Use GADAdSizeLeaderboard [-Wdeprecated-declarations]
bannerSize = kGADAdSizeLeaderboard;
^
Line 253: 'kGADAdSizeMediumRectangle' is deprecated: Use GADAdSizeMediumRectangle [-Wdeprecated-declarations]
bannerSize = kGADAdSizeMediumRectangle;
^
Line 286: enumeration value 'POS_NONE' not handled in switch [-Wswitch]
switch (bannerSizeConst) {
^
Line 286: add missing switch cases
switch (bannerSizeConst) {
^
Line 403: format specifies type 'char *' but the argument has type 'NSError *' [-Wformat]
dmLogInfo("AdInspector Error: %s", error);
~~ ^~~~~
Line 403: expanded from macro 'dmLogInfo'
#define dmLogInfo(format, args...) LogInternal(dmLog::LOG_SEVERITY_INFO, DLIB_LOG_DOMAIN, format, ## args);
~~~~~~ ^~~~
/extension-admob/lib/ios/GoogleMobileAds.framework/Headers/GADAdSize.h
Line 167: 'kGADAdSizeBanner' has been explicitly marked deprecated here
GAD_EXTERN GADAdSize const kGADAdSizeBanner GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADAdSizeBanner");
^
Line 171: 'kGADAdSizeLargeBanner' has been explicitly marked deprecated here
GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADAdSizeLargeBanner");
^
Line 175: 'kGADAdSizeMediumRectangle' has been explicitly marked deprecated here
GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADAdSizeMediumRectangle");
^
Line 180: 'kGADAdSizeFullBanner' has been explicitly marked deprecated here
GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADAdSizeFullBanner");
^
Line 184: 'kGADAdSizeLeaderboard' has been explicitly marked deprecated here
GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADAdSizeLeaderboard");
^