admob-google
Advanced tools
+1
-1
@@ -1,1 +0,1 @@ | ||
| {"name":"admob-google","version":"3.2.12","description":"AdMob plugin. Android SDK v7.5, iOS SDK v7.3.1.","cordova":{"id":"admob-google","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/appfeel/admob-google-cordova.git"},"keywords":["ad","ads","admob","google","advertising","advertisment","publicity","earn","win","play","services","iad","flurry","monetization","money","appfeel","tappx","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=4.0.0"}],"author":"AppFeel","license":"MIT","bugs":{"url":"https://github.com/appfeel/admob-google-cordova/issues"},"homepage":"https://github.com/appfeel/admob-google-cordova#readme"} | ||
| {"name":"admob-google","version":"3.2.13","description":"AdMob plugin. Android SDK v7.5, iOS SDK v7.3.1.","cordova":{"id":"admob-google","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/appfeel/admob-google-cordova.git"},"keywords":["ad","ads","admob","google","advertising","advertisment","publicity","earn","win","play","services","iad","flurry","monetization","money","appfeel","tappx","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=4.0.0"}],"author":"AppFeel","license":"MIT","bugs":{"url":"https://github.com/appfeel/admob-google-cordova/issues"},"homepage":"https://github.com/appfeel/admob-google-cordova#readme"} |
+1
-1
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="admob-google" version="3.2.12"> | ||
| <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="admob-google" version="3.2.13"> | ||
| <description>AdMob plugin. Android SDK v7.5, iOS SDK v7.3.1.</description> | ||
@@ -4,0 +4,0 @@ <name>AdMob Google Ads + Tappx</name> |
+12
-12
@@ -546,3 +546,3 @@ /* | ||
| str = [options objectForKey:OPT_PUBLISHER_ID]; | ||
| if (str && [str length] > 0) { | ||
| if (str && ![str isEqual:[NSNull null]] && [str length] > 0) { | ||
| publisherId = str; | ||
@@ -552,3 +552,3 @@ } | ||
| str = [options objectForKey:OPT_INTERSTITIAL_ADID]; | ||
| if (str && [str length] > 0) { | ||
| if (str && ![str isEqual:[NSNull null]] && [str length] > 0) { | ||
| interstitialAdId = str; | ||
@@ -558,3 +558,3 @@ } | ||
| str = [options objectForKey:OPT_AD_SIZE]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| adSize = [self __adSizeFromString:str]; | ||
@@ -564,3 +564,3 @@ } | ||
| str = [options objectForKey:OPT_BANNER_AT_TOP]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| isBannerAtTop = [str boolValue]; | ||
@@ -570,3 +570,3 @@ } | ||
| str = [options objectForKey:OPT_OVERLAP]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]] ) { | ||
| isBannerOverlap = [str boolValue]; | ||
@@ -576,3 +576,3 @@ } | ||
| str = [options objectForKey:OPT_OFFSET_STATUSBAR]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| isOffsetStatusBar = [str boolValue]; | ||
@@ -582,3 +582,3 @@ } | ||
| str = [options objectForKey:OPT_IS_TESTING]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| isTesting = [str boolValue]; | ||
@@ -588,3 +588,3 @@ } | ||
| NSDictionary* dict = [options objectForKey:OPT_AD_EXTRAS]; | ||
| if (dict) { | ||
| if (dict && ![dict isEqual:[NSNull null]]) { | ||
| adExtras = dict; | ||
@@ -594,3 +594,3 @@ } | ||
| str = [options objectForKey:OPT_AUTO_SHOW_BANNER]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| isBannerAutoShow = [str boolValue]; | ||
@@ -600,3 +600,3 @@ } | ||
| str = [options objectForKey:OPT_AUTO_SHOW_INTERSTITIAL]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| isInterstitialAutoShow = [str boolValue]; | ||
@@ -606,3 +606,3 @@ } | ||
| str = [options objectForKey:OPT_TAPPX_ID_IOS]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| tappxId = str; | ||
@@ -614,3 +614,3 @@ hasTappx = true; | ||
| str = [options objectForKey:OPT_TAPPX_SHARE]; | ||
| if (str) { | ||
| if (str && ![str isEqual:[NSNull null]]) { | ||
| tappxShare = [str doubleValue]; | ||
@@ -617,0 +617,0 @@ hasTappx = true; |
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
139299
0.28%