com.puzzlescapegames.admob_native 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Runtime/InterstitialAdMob.cs +70 -0
- package/Runtime/InterstitialAdMob.cs.meta +3 -0
- package/Runtime/Puzzlescape.AdMob.asmdef +1 -1
- package/package.json +1 -1
- package/Plugins/iOS/GADUAdNetworkExtras.h +0 -10
- package/Plugins/iOS/GADUAdNetworkExtras.h.meta +0 -81
- package/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib +0 -192
- package/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib.meta +0 -81
- package/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib +0 -119
- package/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib.meta +0 -81
- package/Plugins/iOS/NativeTemplates.meta +0 -8
- package/Plugins/iOS/unity-plugin-library.a +0 -0
- package/Plugins/iOS/unity-plugin-library.a.meta +0 -81
- package/Plugins/iOS.meta +0 -8
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
using GoogleMobileAds.Api;
|
|
2
|
+
using System;
|
|
3
|
+
using UnityEngine;
|
|
4
|
+
|
|
5
|
+
namespace PuzzlescapeGames.AdMobNative
|
|
6
|
+
{
|
|
7
|
+
public sealed class InterstitialAdMob
|
|
8
|
+
{
|
|
9
|
+
private string _adUnitId;
|
|
10
|
+
private InterstitialAd _interstitialAd;
|
|
11
|
+
|
|
12
|
+
public InterstitialAdMob( string adUnitId = null )
|
|
13
|
+
{
|
|
14
|
+
_adUnitId = adUnitId;
|
|
15
|
+
|
|
16
|
+
if ( _adUnitId == null || string.IsNullOrEmpty( _adUnitId ) )
|
|
17
|
+
{
|
|
18
|
+
#if UNITY_ANDROID
|
|
19
|
+
_adUnitId = "ca-app-pub-3940256099942544/1033173712";
|
|
20
|
+
#elif UNITY_IPHONE
|
|
21
|
+
_adUnitId = "ca-app-pub-3940256099942544/4411468910";
|
|
22
|
+
#else
|
|
23
|
+
_adUnitId = "unused";
|
|
24
|
+
#endif
|
|
25
|
+
Debug.LogWarning( "[Native] AdMob Native Interstitial ad unit id is not set. Using default: " + _adUnitId );
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public void LoadAd( Action< bool > callback = null )
|
|
30
|
+
{
|
|
31
|
+
DestroyAd();
|
|
32
|
+
|
|
33
|
+
Debug.Log( "[Native] AdMob Loading interstitial ad." );
|
|
34
|
+
|
|
35
|
+
// Create our request used to load the ad.
|
|
36
|
+
var adRequest = new AdRequest();
|
|
37
|
+
|
|
38
|
+
InterstitialAd.Load( _adUnitId, adRequest, ( InterstitialAd ad, LoadAdError error ) =>
|
|
39
|
+
{
|
|
40
|
+
if ( error != null )
|
|
41
|
+
{
|
|
42
|
+
callback?.Invoke( false );
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
_interstitialAd = ad;
|
|
47
|
+
|
|
48
|
+
callback?.Invoke( true );
|
|
49
|
+
} );
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
public void ShowAd()
|
|
53
|
+
{
|
|
54
|
+
if (_interstitialAd != null && _interstitialAd.CanShowAd())
|
|
55
|
+
{
|
|
56
|
+
Debug.Log( "[Native] AdMob Showing interstitial ad." );
|
|
57
|
+
|
|
58
|
+
_interstitialAd.Show();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
public void DestroyAd()
|
|
63
|
+
{
|
|
64
|
+
if ( _interstitialAd != null )
|
|
65
|
+
{
|
|
66
|
+
_interstitialAd.Destroy();
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// Copyright 2016 Google Inc. All Rights Reserved.
|
|
2
|
-
|
|
3
|
-
#import <GoogleMobileAds/GoogleMobileAds.h>
|
|
4
|
-
|
|
5
|
-
@protocol GADUAdNetworkExtras <NSObject>
|
|
6
|
-
|
|
7
|
-
- (nonnull id<GADAdNetworkExtras>)adNetworkExtrasWithDictionary:
|
|
8
|
-
(nonnull NSDictionary<NSString *, NSString *> *)extras;
|
|
9
|
-
|
|
10
|
-
@end
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 1c0d8a6c9b36440eaa4c01518670217f
|
|
3
|
-
labels:
|
|
4
|
-
- gvh
|
|
5
|
-
- gvh_version-10.7.0
|
|
6
|
-
- gvhp_exportpath-Plugins/iOS/GADUAdNetworkExtras.h
|
|
7
|
-
timeCreated: 1480838400
|
|
8
|
-
PluginImporter:
|
|
9
|
-
serializedVersion: 1
|
|
10
|
-
iconMap: {}
|
|
11
|
-
executionOrder: {}
|
|
12
|
-
isPreloaded: 0
|
|
13
|
-
platformData:
|
|
14
|
-
Android:
|
|
15
|
-
enabled: 0
|
|
16
|
-
settings:
|
|
17
|
-
CPU: AnyCPU
|
|
18
|
-
Any:
|
|
19
|
-
enabled: 0
|
|
20
|
-
settings: {}
|
|
21
|
-
Editor:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
CPU: AnyCPU
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
OS: AnyOS
|
|
27
|
-
Linux:
|
|
28
|
-
enabled: 1
|
|
29
|
-
settings:
|
|
30
|
-
CPU: x86
|
|
31
|
-
Linux64:
|
|
32
|
-
enabled: 1
|
|
33
|
-
settings:
|
|
34
|
-
CPU: x86_64
|
|
35
|
-
LinuxUniversal:
|
|
36
|
-
enabled: 1
|
|
37
|
-
settings:
|
|
38
|
-
CPU: AnyCPU
|
|
39
|
-
OSXIntel:
|
|
40
|
-
enabled: 1
|
|
41
|
-
settings:
|
|
42
|
-
CPU: x86
|
|
43
|
-
OSXIntel64:
|
|
44
|
-
enabled: 1
|
|
45
|
-
settings:
|
|
46
|
-
CPU: x86_64
|
|
47
|
-
OSXUniversal:
|
|
48
|
-
enabled: 1
|
|
49
|
-
settings:
|
|
50
|
-
CPU: AnyCPU
|
|
51
|
-
Web:
|
|
52
|
-
enabled: 0
|
|
53
|
-
settings: {}
|
|
54
|
-
WebStreamed:
|
|
55
|
-
enabled: 0
|
|
56
|
-
settings: {}
|
|
57
|
-
Win:
|
|
58
|
-
enabled: 1
|
|
59
|
-
settings:
|
|
60
|
-
CPU: x86
|
|
61
|
-
Win64:
|
|
62
|
-
enabled: 1
|
|
63
|
-
settings:
|
|
64
|
-
CPU: x86_64
|
|
65
|
-
WindowsStoreApps:
|
|
66
|
-
enabled: 0
|
|
67
|
-
settings:
|
|
68
|
-
CPU: AnyCPU
|
|
69
|
-
iOS:
|
|
70
|
-
enabled: 1
|
|
71
|
-
settings:
|
|
72
|
-
CompileFlags:
|
|
73
|
-
FrameworkDependencies:
|
|
74
|
-
tvOS:
|
|
75
|
-
enabled: 0
|
|
76
|
-
settings:
|
|
77
|
-
CompileFlags:
|
|
78
|
-
FrameworkDependencies:
|
|
79
|
-
userData:
|
|
80
|
-
assetBundleName:
|
|
81
|
-
assetBundleVariant:
|
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="17156" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
|
|
3
|
-
<device id="retina5_5" orientation="portrait" appearance="light"/>
|
|
4
|
-
<dependencies>
|
|
5
|
-
<deployment identifier="iOS"/>
|
|
6
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17125"/>
|
|
7
|
-
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
8
|
-
</dependencies>
|
|
9
|
-
<objects>
|
|
10
|
-
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="GADTMediumTemplateView"/>
|
|
11
|
-
<view opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h2X-7h-r2O" customClass="GADTTemplateView">
|
|
12
|
-
<rect key="frame" x="0.0" y="0.0" width="355" height="402"/>
|
|
13
|
-
<subviews>
|
|
14
|
-
<view opaque="NO" clearsContextBeforeDrawing="NO" userInteractionEnabled="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qZf-ej-Zxg">
|
|
15
|
-
<rect key="frame" x="10" y="199.66666666666663" width="335" height="202.33333333333337"/>
|
|
16
|
-
<subviews>
|
|
17
|
-
<button opaque="NO" userInteractionEnabled="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ekc-Zs-FHH">
|
|
18
|
-
<rect key="frame" x="0.0" y="153.33333333333334" width="335" height="39"/>
|
|
19
|
-
<color key="backgroundColor" red="0.25882352939999997" green="0.52156862749999999" blue="0.95686274510000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
20
|
-
<constraints>
|
|
21
|
-
<constraint firstAttribute="height" constant="39" id="y8W-B6-JKk"/>
|
|
22
|
-
</constraints>
|
|
23
|
-
<state key="normal" title="Button">
|
|
24
|
-
<color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
25
|
-
</state>
|
|
26
|
-
</button>
|
|
27
|
-
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JRU-6T-XIW">
|
|
28
|
-
<rect key="frame" x="0.0" y="0.0" width="335" height="51"/>
|
|
29
|
-
<subviews>
|
|
30
|
-
<stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dtV-H5-CUV">
|
|
31
|
-
<rect key="frame" x="0.0" y="0.0" width="335" height="51"/>
|
|
32
|
-
<subviews>
|
|
33
|
-
<view contentMode="scaleToFill" horizontalCompressionResistancePriority="1" verticalCompressionResistancePriority="1" translatesAutoresizingMaskIntoConstraints="NO" id="IDQ-dK-aNl">
|
|
34
|
-
<rect key="frame" x="0.0" y="0.0" width="51" height="51"/>
|
|
35
|
-
<subviews>
|
|
36
|
-
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="1" verticalCompressionResistancePriority="1" translatesAutoresizingMaskIntoConstraints="NO" id="tcZ-gP-ynt">
|
|
37
|
-
<rect key="frame" x="0.0" y="0.0" width="51" height="51"/>
|
|
38
|
-
</imageView>
|
|
39
|
-
</subviews>
|
|
40
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
41
|
-
<constraints>
|
|
42
|
-
<constraint firstItem="tcZ-gP-ynt" firstAttribute="leading" secondItem="IDQ-dK-aNl" secondAttribute="leading" id="080-xf-xNS"/>
|
|
43
|
-
<constraint firstItem="tcZ-gP-ynt" firstAttribute="top" secondItem="IDQ-dK-aNl" secondAttribute="top" id="7ay-A1-lkK"/>
|
|
44
|
-
<constraint firstAttribute="trailing" secondItem="tcZ-gP-ynt" secondAttribute="trailing" id="D58-gg-wEz"/>
|
|
45
|
-
<constraint firstAttribute="width" secondItem="IDQ-dK-aNl" secondAttribute="height" multiplier="1:1" id="fy0-5g-4fT"/>
|
|
46
|
-
<constraint firstAttribute="bottom" secondItem="tcZ-gP-ynt" secondAttribute="bottom" id="mcB-Kl-8SB"/>
|
|
47
|
-
</constraints>
|
|
48
|
-
</view>
|
|
49
|
-
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZMg-Gj-lfR">
|
|
50
|
-
<rect key="frame" x="51" y="0.0" width="284" height="51"/>
|
|
51
|
-
<subviews>
|
|
52
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ad" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PfZ-cd-zxs">
|
|
53
|
-
<rect key="frame" x="10" y="30" width="28" height="21"/>
|
|
54
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
55
|
-
<constraints>
|
|
56
|
-
<constraint firstAttribute="height" constant="21" id="5e5-3M-FF3"/>
|
|
57
|
-
<constraint firstAttribute="width" constant="28" id="L2a-Ko-fWP"/>
|
|
58
|
-
</constraints>
|
|
59
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
60
|
-
<color key="textColor" red="0.2274509804" green="0.4039215686" blue="0.15686274510000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
61
|
-
<nil key="highlightedColor"/>
|
|
62
|
-
</label>
|
|
63
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NKU-cb-NgA">
|
|
64
|
-
<rect key="frame" x="10" y="0.0" width="266" height="25"/>
|
|
65
|
-
<constraints>
|
|
66
|
-
<constraint firstAttribute="height" constant="25" id="iVB-Nr-QJm"/>
|
|
67
|
-
</constraints>
|
|
68
|
-
<fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
|
|
69
|
-
<nil key="textColor"/>
|
|
70
|
-
<nil key="highlightedColor"/>
|
|
71
|
-
</label>
|
|
72
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ic2-4I-EtF">
|
|
73
|
-
<rect key="frame" x="43" y="30" width="241" height="21"/>
|
|
74
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
75
|
-
<color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
76
|
-
<nil key="highlightedColor"/>
|
|
77
|
-
</label>
|
|
78
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nc5-4a-DC8">
|
|
79
|
-
<rect key="frame" x="43" y="29" width="241" height="20.333333333333329"/>
|
|
80
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
81
|
-
<color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
82
|
-
<nil key="highlightedColor"/>
|
|
83
|
-
</label>
|
|
84
|
-
</subviews>
|
|
85
|
-
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
86
|
-
<constraints>
|
|
87
|
-
<constraint firstItem="PfZ-cd-zxs" firstAttribute="top" secondItem="NKU-cb-NgA" secondAttribute="bottom" constant="5" id="8CL-eR-AJN"/>
|
|
88
|
-
<constraint firstAttribute="trailing" secondItem="ic2-4I-EtF" secondAttribute="trailing" id="9Ig-ff-Xy9"/>
|
|
89
|
-
<constraint firstItem="ic2-4I-EtF" firstAttribute="leading" secondItem="PfZ-cd-zxs" secondAttribute="trailing" constant="5" id="BvN-q8-2tx"/>
|
|
90
|
-
<constraint firstItem="NKU-cb-NgA" firstAttribute="leading" secondItem="ZMg-Gj-lfR" secondAttribute="leading" constant="10" id="R0a-Yh-5hA"/>
|
|
91
|
-
<constraint firstAttribute="bottom" secondItem="ic2-4I-EtF" secondAttribute="bottom" id="RsF-hZ-dlg"/>
|
|
92
|
-
<constraint firstAttribute="trailing" secondItem="NKU-cb-NgA" secondAttribute="trailing" constant="8" id="Rur-KX-Eao"/>
|
|
93
|
-
<constraint firstItem="Nc5-4a-DC8" firstAttribute="top" secondItem="NKU-cb-NgA" secondAttribute="bottom" constant="4" id="Vd7-ge-1KD"/>
|
|
94
|
-
<constraint firstItem="PfZ-cd-zxs" firstAttribute="leading" secondItem="ZMg-Gj-lfR" secondAttribute="leading" constant="10" id="XOm-ic-qzo"/>
|
|
95
|
-
<constraint firstItem="NKU-cb-NgA" firstAttribute="top" secondItem="ZMg-Gj-lfR" secondAttribute="top" id="XXu-i3-Bb8"/>
|
|
96
|
-
<constraint firstAttribute="trailing" secondItem="Nc5-4a-DC8" secondAttribute="trailing" id="fr4-RB-zCl"/>
|
|
97
|
-
<constraint firstItem="ic2-4I-EtF" firstAttribute="leading" secondItem="PfZ-cd-zxs" secondAttribute="trailing" constant="5" id="hI7-l2-cCQ"/>
|
|
98
|
-
<constraint firstAttribute="bottom" secondItem="PfZ-cd-zxs" secondAttribute="bottom" id="s9K-uZ-2fK"/>
|
|
99
|
-
<constraint firstItem="Nc5-4a-DC8" firstAttribute="leading" secondItem="PfZ-cd-zxs" secondAttribute="trailing" constant="5" id="uDG-1E-LGP"/>
|
|
100
|
-
<constraint firstItem="ic2-4I-EtF" firstAttribute="top" secondItem="NKU-cb-NgA" secondAttribute="bottom" constant="5" id="zDa-Y8-eNv"/>
|
|
101
|
-
</constraints>
|
|
102
|
-
</view>
|
|
103
|
-
</subviews>
|
|
104
|
-
<constraints>
|
|
105
|
-
<constraint firstAttribute="bottom" secondItem="IDQ-dK-aNl" secondAttribute="bottom" id="Pz3-Ne-UvS"/>
|
|
106
|
-
<constraint firstItem="IDQ-dK-aNl" firstAttribute="top" secondItem="dtV-H5-CUV" secondAttribute="top" id="Um4-Pc-PRn"/>
|
|
107
|
-
<constraint firstItem="IDQ-dK-aNl" firstAttribute="leading" secondItem="dtV-H5-CUV" secondAttribute="leading" id="ygw-iI-8p3"/>
|
|
108
|
-
</constraints>
|
|
109
|
-
</stackView>
|
|
110
|
-
</subviews>
|
|
111
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
112
|
-
<constraints>
|
|
113
|
-
<constraint firstAttribute="bottom" secondItem="dtV-H5-CUV" secondAttribute="bottom" id="JTS-sy-ZIx"/>
|
|
114
|
-
<constraint firstItem="dtV-H5-CUV" firstAttribute="leading" secondItem="JRU-6T-XIW" secondAttribute="leading" id="KnB-yd-LES"/>
|
|
115
|
-
<constraint firstAttribute="trailing" secondItem="dtV-H5-CUV" secondAttribute="trailing" id="c6Z-Wa-u8v"/>
|
|
116
|
-
<constraint firstItem="dtV-H5-CUV" firstAttribute="top" secondItem="JRU-6T-XIW" secondAttribute="top" id="hLc-rA-agZ"/>
|
|
117
|
-
</constraints>
|
|
118
|
-
</view>
|
|
119
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="41W-IZ-S0S">
|
|
120
|
-
<rect key="frame" x="0.0" y="61.000000000000021" width="335" height="82.333333333333314"/>
|
|
121
|
-
<constraints>
|
|
122
|
-
<constraint firstAttribute="height" relation="greaterThanOrEqual" constant="20.329999999999998" id="NUh-RX-SnN"/>
|
|
123
|
-
</constraints>
|
|
124
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
125
|
-
<color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
126
|
-
<nil key="highlightedColor"/>
|
|
127
|
-
</label>
|
|
128
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EEy-n8-ZT9">
|
|
129
|
-
<rect key="frame" x="0.0" y="61.000000000000021" width="335" height="82.333333333333314"/>
|
|
130
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
131
|
-
<nil key="textColor"/>
|
|
132
|
-
<nil key="highlightedColor"/>
|
|
133
|
-
</label>
|
|
134
|
-
</subviews>
|
|
135
|
-
<accessibility key="accessibilityConfiguration">
|
|
136
|
-
<accessibilityTraits key="traits" notEnabled="YES"/>
|
|
137
|
-
</accessibility>
|
|
138
|
-
<constraints>
|
|
139
|
-
<constraint firstItem="EEy-n8-ZT9" firstAttribute="top" secondItem="JRU-6T-XIW" secondAttribute="bottom" constant="10" id="07C-eK-e4L"/>
|
|
140
|
-
<constraint firstAttribute="trailing" secondItem="EEy-n8-ZT9" secondAttribute="trailing" id="0eV-cw-Vb0"/>
|
|
141
|
-
<constraint firstItem="JRU-6T-XIW" firstAttribute="top" secondItem="qZf-ej-Zxg" secondAttribute="top" id="7V3-bf-fEw"/>
|
|
142
|
-
<constraint firstItem="JRU-6T-XIW" firstAttribute="leading" secondItem="qZf-ej-Zxg" secondAttribute="leading" id="7q0-md-byq"/>
|
|
143
|
-
<constraint firstItem="EEy-n8-ZT9" firstAttribute="leading" secondItem="qZf-ej-Zxg" secondAttribute="leading" id="H9Y-Xr-Mvb"/>
|
|
144
|
-
<constraint firstItem="Ekc-Zs-FHH" firstAttribute="top" secondItem="41W-IZ-S0S" secondAttribute="bottom" constant="10" id="Haj-5X-7Jq"/>
|
|
145
|
-
<constraint firstItem="41W-IZ-S0S" firstAttribute="top" secondItem="JRU-6T-XIW" secondAttribute="bottom" constant="10" id="LUq-TO-4Ri"/>
|
|
146
|
-
<constraint firstItem="Ekc-Zs-FHH" firstAttribute="leading" secondItem="qZf-ej-Zxg" secondAttribute="leading" id="N0d-Ud-bcH"/>
|
|
147
|
-
<constraint firstAttribute="trailing" secondItem="Ekc-Zs-FHH" secondAttribute="trailing" id="QEk-Nl-LP0"/>
|
|
148
|
-
<constraint firstAttribute="bottom" secondItem="Ekc-Zs-FHH" secondAttribute="bottom" constant="10" id="fQb-8m-kWu"/>
|
|
149
|
-
<constraint firstAttribute="trailing" secondItem="JRU-6T-XIW" secondAttribute="trailing" id="fpH-cd-zrf"/>
|
|
150
|
-
<constraint firstAttribute="trailing" secondItem="41W-IZ-S0S" secondAttribute="trailing" id="rZu-Yd-6qa"/>
|
|
151
|
-
<constraint firstItem="Ekc-Zs-FHH" firstAttribute="top" secondItem="EEy-n8-ZT9" secondAttribute="bottom" constant="10" id="rx0-LH-lgr"/>
|
|
152
|
-
<constraint firstItem="41W-IZ-S0S" firstAttribute="leading" secondItem="qZf-ej-Zxg" secondAttribute="leading" id="w16-DI-Ydj"/>
|
|
153
|
-
</constraints>
|
|
154
|
-
</view>
|
|
155
|
-
<view clipsSubviews="YES" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="1ne-Xk-CBH" customClass="GADMediaView">
|
|
156
|
-
<rect key="frame" x="0.0" y="0.0" width="355" height="199.66666666666666"/>
|
|
157
|
-
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
158
|
-
<constraints>
|
|
159
|
-
<constraint firstAttribute="width" secondItem="1ne-Xk-CBH" secondAttribute="height" multiplier="16:9" id="kTC-ip-nfX"/>
|
|
160
|
-
</constraints>
|
|
161
|
-
</view>
|
|
162
|
-
</subviews>
|
|
163
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
164
|
-
<accessibility key="accessibilityConfiguration">
|
|
165
|
-
<accessibilityTraits key="traits" notEnabled="YES"/>
|
|
166
|
-
</accessibility>
|
|
167
|
-
<constraints>
|
|
168
|
-
<constraint firstAttribute="trailing" secondItem="qZf-ej-Zxg" secondAttribute="trailing" constant="10" id="1Rv-ij-HDB"/>
|
|
169
|
-
<constraint firstItem="qZf-ej-Zxg" firstAttribute="leading" secondItem="h2X-7h-r2O" secondAttribute="leading" constant="10" id="OCX-hu-Rvd"/>
|
|
170
|
-
<constraint firstItem="qZf-ej-Zxg" firstAttribute="top" secondItem="1ne-Xk-CBH" secondAttribute="bottom" id="aHY-Ht-nDt"/>
|
|
171
|
-
<constraint firstItem="1ne-Xk-CBH" firstAttribute="leading" secondItem="h2X-7h-r2O" secondAttribute="leading" id="cj9-Mw-8MR"/>
|
|
172
|
-
<constraint firstAttribute="trailing" secondItem="1ne-Xk-CBH" secondAttribute="trailing" id="gLW-Sf-wcR"/>
|
|
173
|
-
<constraint firstItem="1ne-Xk-CBH" firstAttribute="top" secondItem="h2X-7h-r2O" secondAttribute="top" id="ipR-Fl-Mie"/>
|
|
174
|
-
<constraint firstAttribute="bottom" secondItem="qZf-ej-Zxg" secondAttribute="bottom" id="sWi-Jm-MXA"/>
|
|
175
|
-
</constraints>
|
|
176
|
-
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
|
177
|
-
<connections>
|
|
178
|
-
<outlet property="adBadge" destination="PfZ-cd-zxs" id="l4Z-NW-nRv"/>
|
|
179
|
-
<outlet property="advertiserView" destination="ic2-4I-EtF" id="l3s-ci-Wqi"/>
|
|
180
|
-
<outlet property="bodyView" destination="41W-IZ-S0S" id="Iwg-fc-zE1"/>
|
|
181
|
-
<outlet property="callToActionView" destination="Ekc-Zs-FHH" id="jEd-fy-AYv"/>
|
|
182
|
-
<outlet property="headlineView" destination="NKU-cb-NgA" id="rQk-ZH-WzT"/>
|
|
183
|
-
<outlet property="iconView" destination="tcZ-gP-ynt" id="v9E-Jd-ls7"/>
|
|
184
|
-
<outlet property="mediaView" destination="1ne-Xk-CBH" id="ym4-4P-qZ1"/>
|
|
185
|
-
<outlet property="starRatingView" destination="EEy-n8-ZT9" id="2zm-9R-j0T"/>
|
|
186
|
-
<outlet property="storeView" destination="Nc5-4a-DC8" id="hEJ-Yq-J1P"/>
|
|
187
|
-
</connections>
|
|
188
|
-
<point key="canvasLocation" x="-68.840579710144937" y="794.83695652173924"/>
|
|
189
|
-
</view>
|
|
190
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
|
191
|
-
</objects>
|
|
192
|
-
</document>
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 766f36c9503c48e5915b2dbb1b312f64
|
|
3
|
-
labels:
|
|
4
|
-
- gvh
|
|
5
|
-
- gvh_version-10.7.0
|
|
6
|
-
- gvhp_exportpath-Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib
|
|
7
|
-
timeCreated: 1480838400
|
|
8
|
-
PluginImporter:
|
|
9
|
-
serializedVersion: 1
|
|
10
|
-
iconMap: {}
|
|
11
|
-
executionOrder: {}
|
|
12
|
-
isPreloaded: 0
|
|
13
|
-
platformData:
|
|
14
|
-
Android:
|
|
15
|
-
enabled: 0
|
|
16
|
-
settings:
|
|
17
|
-
CPU: AnyCPU
|
|
18
|
-
Any:
|
|
19
|
-
enabled: 0
|
|
20
|
-
settings: {}
|
|
21
|
-
Editor:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
CPU: AnyCPU
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
OS: AnyOS
|
|
27
|
-
Linux:
|
|
28
|
-
enabled: 1
|
|
29
|
-
settings:
|
|
30
|
-
CPU: x86
|
|
31
|
-
Linux64:
|
|
32
|
-
enabled: 1
|
|
33
|
-
settings:
|
|
34
|
-
CPU: x86_64
|
|
35
|
-
LinuxUniversal:
|
|
36
|
-
enabled: 1
|
|
37
|
-
settings:
|
|
38
|
-
CPU: AnyCPU
|
|
39
|
-
OSXIntel:
|
|
40
|
-
enabled: 1
|
|
41
|
-
settings:
|
|
42
|
-
CPU: x86
|
|
43
|
-
OSXIntel64:
|
|
44
|
-
enabled: 1
|
|
45
|
-
settings:
|
|
46
|
-
CPU: x86_64
|
|
47
|
-
OSXUniversal:
|
|
48
|
-
enabled: 1
|
|
49
|
-
settings:
|
|
50
|
-
CPU: AnyCPU
|
|
51
|
-
Web:
|
|
52
|
-
enabled: 0
|
|
53
|
-
settings: {}
|
|
54
|
-
WebStreamed:
|
|
55
|
-
enabled: 0
|
|
56
|
-
settings: {}
|
|
57
|
-
Win:
|
|
58
|
-
enabled: 1
|
|
59
|
-
settings:
|
|
60
|
-
CPU: x86
|
|
61
|
-
Win64:
|
|
62
|
-
enabled: 1
|
|
63
|
-
settings:
|
|
64
|
-
CPU: x86_64
|
|
65
|
-
WindowsStoreApps:
|
|
66
|
-
enabled: 0
|
|
67
|
-
settings:
|
|
68
|
-
CPU: AnyCPU
|
|
69
|
-
iOS:
|
|
70
|
-
enabled: 1
|
|
71
|
-
settings:
|
|
72
|
-
CompileFlags:
|
|
73
|
-
FrameworkDependencies:
|
|
74
|
-
tvOS:
|
|
75
|
-
enabled: 0
|
|
76
|
-
settings:
|
|
77
|
-
CompileFlags:
|
|
78
|
-
FrameworkDependencies:
|
|
79
|
-
userData:
|
|
80
|
-
assetBundleName:
|
|
81
|
-
assetBundleVariant:
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="17156" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
|
|
3
|
-
<device id="retina5_5" orientation="portrait" appearance="light"/>
|
|
4
|
-
<dependencies>
|
|
5
|
-
<deployment identifier="iOS"/>
|
|
6
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17125"/>
|
|
7
|
-
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
8
|
-
</dependencies>
|
|
9
|
-
<objects>
|
|
10
|
-
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="GADTSmallTemplateView"/>
|
|
11
|
-
<view opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h2X-7h-r2O" customClass="GADTTemplateView">
|
|
12
|
-
<rect key="frame" x="0.0" y="0.0" width="403" height="101"/>
|
|
13
|
-
<subviews>
|
|
14
|
-
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="L39-RW-Fxr">
|
|
15
|
-
<rect key="frame" x="0.0" y="0.0" width="100.66666666666667" height="101"/>
|
|
16
|
-
<subviews>
|
|
17
|
-
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6ux-FJ-pGo" customClass="GADMediaView">
|
|
18
|
-
<rect key="frame" x="0.0" y="0.0" width="100.66666666666667" height="101"/>
|
|
19
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
20
|
-
</view>
|
|
21
|
-
</subviews>
|
|
22
|
-
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
23
|
-
<constraints>
|
|
24
|
-
<constraint firstItem="6ux-FJ-pGo" firstAttribute="leading" secondItem="L39-RW-Fxr" secondAttribute="leading" id="27x-eI-Vv6"/>
|
|
25
|
-
<constraint firstItem="6ux-FJ-pGo" firstAttribute="top" secondItem="L39-RW-Fxr" secondAttribute="top" id="ags-Wp-AEy"/>
|
|
26
|
-
<constraint firstAttribute="bottom" secondItem="6ux-FJ-pGo" secondAttribute="bottom" id="dPo-Dh-hjm"/>
|
|
27
|
-
<constraint firstAttribute="width" secondItem="L39-RW-Fxr" secondAttribute="height" multiplier="1:1" id="evj-q8-mFJ"/>
|
|
28
|
-
<constraint firstAttribute="trailing" secondItem="6ux-FJ-pGo" secondAttribute="trailing" id="kq2-nx-atN"/>
|
|
29
|
-
</constraints>
|
|
30
|
-
</view>
|
|
31
|
-
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9ag-e3-7oH">
|
|
32
|
-
<rect key="frame" x="110.66666666666666" y="60" width="282.33333333333337" height="31"/>
|
|
33
|
-
<color key="backgroundColor" red="0.25882352941176467" green="0.52156862745098043" blue="0.95686274509803915" alpha="1" colorSpace="calibratedRGB"/>
|
|
34
|
-
<state key="normal" title="Button">
|
|
35
|
-
<color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
36
|
-
</state>
|
|
37
|
-
</button>
|
|
38
|
-
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Lx5-Xt-1uw">
|
|
39
|
-
<rect key="frame" x="110.66666666666666" y="10" width="282.33333333333337" height="40"/>
|
|
40
|
-
<subviews>
|
|
41
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Headline" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DKj-id-Sm4">
|
|
42
|
-
<rect key="frame" x="0.0" y="0.0" width="282.33333333333331" height="16"/>
|
|
43
|
-
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
44
|
-
<nil key="textColor"/>
|
|
45
|
-
<nil key="highlightedColor"/>
|
|
46
|
-
</label>
|
|
47
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zjv-ch-qcM">
|
|
48
|
-
<rect key="frame" x="29.999999999999986" y="21" width="252.33333333333331" height="19"/>
|
|
49
|
-
<fontDescription key="fontDescription" type="system" pointSize="12"/>
|
|
50
|
-
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
51
|
-
<nil key="highlightedColor"/>
|
|
52
|
-
</label>
|
|
53
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ad" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hl4-7y-gXg">
|
|
54
|
-
<rect key="frame" x="0.0" y="21" width="25" height="19"/>
|
|
55
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
56
|
-
<constraints>
|
|
57
|
-
<constraint firstAttribute="height" constant="19" id="zKN-zg-1DK"/>
|
|
58
|
-
<constraint firstAttribute="width" constant="25" id="zzo-oJ-f7v"/>
|
|
59
|
-
</constraints>
|
|
60
|
-
<fontDescription key="fontDescription" type="system" pointSize="12"/>
|
|
61
|
-
<color key="textColor" red="0.2274509804" green="0.4039215686" blue="0.15686274510000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
62
|
-
<nil key="highlightedColor"/>
|
|
63
|
-
</label>
|
|
64
|
-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pWT-IG-tgy">
|
|
65
|
-
<rect key="frame" x="29" y="18" width="245" height="24"/>
|
|
66
|
-
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
67
|
-
<fontDescription key="fontDescription" type="system" pointSize="12"/>
|
|
68
|
-
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
69
|
-
<nil key="highlightedColor"/>
|
|
70
|
-
</label>
|
|
71
|
-
</subviews>
|
|
72
|
-
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
73
|
-
<constraints>
|
|
74
|
-
<constraint firstItem="hl4-7y-gXg" firstAttribute="top" secondItem="DKj-id-Sm4" secondAttribute="bottom" constant="5" id="0Tg-39-lC8"/>
|
|
75
|
-
<constraint firstAttribute="bottom" secondItem="Zjv-ch-qcM" secondAttribute="bottom" id="CjG-2q-n2F"/>
|
|
76
|
-
<constraint firstAttribute="trailing" secondItem="DKj-id-Sm4" secondAttribute="trailing" id="UoI-a1-i42"/>
|
|
77
|
-
<constraint firstItem="Zjv-ch-qcM" firstAttribute="leading" secondItem="hl4-7y-gXg" secondAttribute="trailing" constant="5" id="fU5-cu-7Xt"/>
|
|
78
|
-
<constraint firstItem="Zjv-ch-qcM" firstAttribute="top" secondItem="DKj-id-Sm4" secondAttribute="bottom" constant="5" id="rEn-LP-hhs"/>
|
|
79
|
-
<constraint firstItem="DKj-id-Sm4" firstAttribute="top" secondItem="Lx5-Xt-1uw" secondAttribute="top" id="sSI-Oo-ibp"/>
|
|
80
|
-
<constraint firstItem="DKj-id-Sm4" firstAttribute="leading" secondItem="Lx5-Xt-1uw" secondAttribute="leading" id="syr-GK-hqO"/>
|
|
81
|
-
<constraint firstAttribute="bottom" secondItem="hl4-7y-gXg" secondAttribute="bottom" id="x5d-wM-uYg"/>
|
|
82
|
-
<constraint firstItem="hl4-7y-gXg" firstAttribute="leading" secondItem="Lx5-Xt-1uw" secondAttribute="leading" id="xIO-Ue-ETa"/>
|
|
83
|
-
<constraint firstAttribute="trailing" secondItem="Zjv-ch-qcM" secondAttribute="trailing" id="ygc-FQ-5ah"/>
|
|
84
|
-
</constraints>
|
|
85
|
-
</view>
|
|
86
|
-
</subviews>
|
|
87
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
88
|
-
<accessibility key="accessibilityConfiguration">
|
|
89
|
-
<accessibilityTraits key="traits" notEnabled="YES"/>
|
|
90
|
-
<bool key="isElement" value="YES"/>
|
|
91
|
-
</accessibility>
|
|
92
|
-
<constraints>
|
|
93
|
-
<constraint firstAttribute="trailing" secondItem="9ag-e3-7oH" secondAttribute="trailing" constant="10" id="170-UP-YGV"/>
|
|
94
|
-
<constraint firstItem="Lx5-Xt-1uw" firstAttribute="top" secondItem="h2X-7h-r2O" secondAttribute="top" constant="10" id="3QL-ag-qrO"/>
|
|
95
|
-
<constraint firstItem="Lx5-Xt-1uw" firstAttribute="height" secondItem="9ag-e3-7oH" secondAttribute="height" multiplier="1.3" id="Hdt-VV-9Kw"/>
|
|
96
|
-
<constraint firstItem="L39-RW-Fxr" firstAttribute="leading" secondItem="h2X-7h-r2O" secondAttribute="leading" id="ISF-wz-Ozg"/>
|
|
97
|
-
<constraint firstItem="L39-RW-Fxr" firstAttribute="width" relation="lessThanOrEqual" secondItem="h2X-7h-r2O" secondAttribute="width" multiplier="0.25" id="ItS-CH-KDp"/>
|
|
98
|
-
<constraint firstItem="Lx5-Xt-1uw" firstAttribute="leading" secondItem="L39-RW-Fxr" secondAttribute="trailing" constant="10" id="Qgh-CR-lQY"/>
|
|
99
|
-
<constraint firstItem="9ag-e3-7oH" firstAttribute="top" secondItem="Lx5-Xt-1uw" secondAttribute="bottom" constant="10" id="RyV-eO-eP8"/>
|
|
100
|
-
<constraint firstAttribute="trailing" secondItem="Lx5-Xt-1uw" secondAttribute="trailing" constant="10" id="YId-cX-a5U"/>
|
|
101
|
-
<constraint firstItem="9ag-e3-7oH" firstAttribute="top" secondItem="Lx5-Xt-1uw" secondAttribute="bottom" constant="10" id="b2E-4c-sl4"/>
|
|
102
|
-
<constraint firstItem="L39-RW-Fxr" firstAttribute="centerY" secondItem="h2X-7h-r2O" secondAttribute="centerY" id="eXQ-jP-VfJ"/>
|
|
103
|
-
<constraint firstItem="9ag-e3-7oH" firstAttribute="leading" secondItem="L39-RW-Fxr" secondAttribute="trailing" constant="10" id="mXy-rL-NiY"/>
|
|
104
|
-
<constraint firstAttribute="bottom" secondItem="9ag-e3-7oH" secondAttribute="bottom" constant="10" id="ywj-Y9-XCT"/>
|
|
105
|
-
</constraints>
|
|
106
|
-
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
|
107
|
-
<connections>
|
|
108
|
-
<outlet property="adBadge" destination="hl4-7y-gXg" id="Bp7-FM-VVW"/>
|
|
109
|
-
<outlet property="advertiserView" destination="Zjv-ch-qcM" id="Ku9-M6-SEf"/>
|
|
110
|
-
<outlet property="callToActionView" destination="9ag-e3-7oH" id="Uh9-xd-ccJ"/>
|
|
111
|
-
<outlet property="headlineView" destination="DKj-id-Sm4" id="fwg-CO-DrR"/>
|
|
112
|
-
<outlet property="mediaView" destination="6ux-FJ-pGo" id="aCz-rd-9bD"/>
|
|
113
|
-
<outlet property="storeView" destination="pWT-IG-tgy" id="f3q-8l-We7"/>
|
|
114
|
-
</connections>
|
|
115
|
-
<point key="canvasLocation" x="-50.000000000000007" y="652.58152173913049"/>
|
|
116
|
-
</view>
|
|
117
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
|
118
|
-
</objects>
|
|
119
|
-
</document>
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 6af78782470b4da9994fc4cf04f03183
|
|
3
|
-
labels:
|
|
4
|
-
- gvh
|
|
5
|
-
- gvh_version-10.7.0
|
|
6
|
-
- gvhp_exportpath-Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib
|
|
7
|
-
timeCreated: 1480838400
|
|
8
|
-
PluginImporter:
|
|
9
|
-
serializedVersion: 1
|
|
10
|
-
iconMap: {}
|
|
11
|
-
executionOrder: {}
|
|
12
|
-
isPreloaded: 0
|
|
13
|
-
platformData:
|
|
14
|
-
Android:
|
|
15
|
-
enabled: 0
|
|
16
|
-
settings:
|
|
17
|
-
CPU: AnyCPU
|
|
18
|
-
Any:
|
|
19
|
-
enabled: 0
|
|
20
|
-
settings: {}
|
|
21
|
-
Editor:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
CPU: AnyCPU
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
OS: AnyOS
|
|
27
|
-
Linux:
|
|
28
|
-
enabled: 1
|
|
29
|
-
settings:
|
|
30
|
-
CPU: x86
|
|
31
|
-
Linux64:
|
|
32
|
-
enabled: 1
|
|
33
|
-
settings:
|
|
34
|
-
CPU: x86_64
|
|
35
|
-
LinuxUniversal:
|
|
36
|
-
enabled: 1
|
|
37
|
-
settings:
|
|
38
|
-
CPU: AnyCPU
|
|
39
|
-
OSXIntel:
|
|
40
|
-
enabled: 1
|
|
41
|
-
settings:
|
|
42
|
-
CPU: x86
|
|
43
|
-
OSXIntel64:
|
|
44
|
-
enabled: 1
|
|
45
|
-
settings:
|
|
46
|
-
CPU: x86_64
|
|
47
|
-
OSXUniversal:
|
|
48
|
-
enabled: 1
|
|
49
|
-
settings:
|
|
50
|
-
CPU: AnyCPU
|
|
51
|
-
Web:
|
|
52
|
-
enabled: 0
|
|
53
|
-
settings: {}
|
|
54
|
-
WebStreamed:
|
|
55
|
-
enabled: 0
|
|
56
|
-
settings: {}
|
|
57
|
-
Win:
|
|
58
|
-
enabled: 1
|
|
59
|
-
settings:
|
|
60
|
-
CPU: x86
|
|
61
|
-
Win64:
|
|
62
|
-
enabled: 1
|
|
63
|
-
settings:
|
|
64
|
-
CPU: x86_64
|
|
65
|
-
WindowsStoreApps:
|
|
66
|
-
enabled: 0
|
|
67
|
-
settings:
|
|
68
|
-
CPU: AnyCPU
|
|
69
|
-
iOS:
|
|
70
|
-
enabled: 1
|
|
71
|
-
settings:
|
|
72
|
-
CompileFlags:
|
|
73
|
-
FrameworkDependencies:
|
|
74
|
-
tvOS:
|
|
75
|
-
enabled: 0
|
|
76
|
-
settings:
|
|
77
|
-
CompileFlags:
|
|
78
|
-
FrameworkDependencies:
|
|
79
|
-
userData:
|
|
80
|
-
assetBundleName:
|
|
81
|
-
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: efc6243c149b4c5e992be75064877917
|
|
3
|
-
labels:
|
|
4
|
-
- gvh
|
|
5
|
-
- gvh_version-10.7.0
|
|
6
|
-
- gvhp_exportpath-Plugins/iOS/unity-plugin-library.a
|
|
7
|
-
timeCreated: 1480838400
|
|
8
|
-
PluginImporter:
|
|
9
|
-
serializedVersion: 1
|
|
10
|
-
iconMap: {}
|
|
11
|
-
executionOrder: {}
|
|
12
|
-
isPreloaded: 0
|
|
13
|
-
platformData:
|
|
14
|
-
Android:
|
|
15
|
-
enabled: 0
|
|
16
|
-
settings:
|
|
17
|
-
CPU: AnyCPU
|
|
18
|
-
Any:
|
|
19
|
-
enabled: 0
|
|
20
|
-
settings: {}
|
|
21
|
-
Editor:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
CPU: AnyCPU
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
OS: AnyOS
|
|
27
|
-
Linux:
|
|
28
|
-
enabled: 1
|
|
29
|
-
settings:
|
|
30
|
-
CPU: x86
|
|
31
|
-
Linux64:
|
|
32
|
-
enabled: 1
|
|
33
|
-
settings:
|
|
34
|
-
CPU: x86_64
|
|
35
|
-
LinuxUniversal:
|
|
36
|
-
enabled: 1
|
|
37
|
-
settings:
|
|
38
|
-
CPU: AnyCPU
|
|
39
|
-
OSXIntel:
|
|
40
|
-
enabled: 1
|
|
41
|
-
settings:
|
|
42
|
-
CPU: x86
|
|
43
|
-
OSXIntel64:
|
|
44
|
-
enabled: 1
|
|
45
|
-
settings:
|
|
46
|
-
CPU: x86_64
|
|
47
|
-
OSXUniversal:
|
|
48
|
-
enabled: 1
|
|
49
|
-
settings:
|
|
50
|
-
CPU: AnyCPU
|
|
51
|
-
Web:
|
|
52
|
-
enabled: 0
|
|
53
|
-
settings: {}
|
|
54
|
-
WebStreamed:
|
|
55
|
-
enabled: 0
|
|
56
|
-
settings: {}
|
|
57
|
-
Win:
|
|
58
|
-
enabled: 1
|
|
59
|
-
settings:
|
|
60
|
-
CPU: x86
|
|
61
|
-
Win64:
|
|
62
|
-
enabled: 1
|
|
63
|
-
settings:
|
|
64
|
-
CPU: x86_64
|
|
65
|
-
WindowsStoreApps:
|
|
66
|
-
enabled: 0
|
|
67
|
-
settings:
|
|
68
|
-
CPU: AnyCPU
|
|
69
|
-
iOS:
|
|
70
|
-
enabled: 1
|
|
71
|
-
settings:
|
|
72
|
-
CompileFlags:
|
|
73
|
-
FrameworkDependencies:
|
|
74
|
-
tvOS:
|
|
75
|
-
enabled: 0
|
|
76
|
-
settings:
|
|
77
|
-
CompileFlags:
|
|
78
|
-
FrameworkDependencies:
|
|
79
|
-
userData:
|
|
80
|
-
assetBundleName:
|
|
81
|
-
assetBundleVariant:
|