tapjoy-react-native-sdk 0.1.0 → 0.1.1
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/example/android/app/build.gradle +172 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +13 -0
- package/example/android/app/src/debug/java/com/tapjoyreactnativesdkexample/ReactNativeFlipper.java +75 -0
- package/example/android/app/src/main/AndroidManifest.xml +24 -0
- package/example/android/app/src/main/java/com/tapjoyreactnativesdkexample/MainActivity.java +35 -0
- package/example/android/app/src/main/java/com/tapjoyreactnativesdkexample/MainApplication.java +62 -0
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +11 -0
- package/example/android/app/src/release/java/com/tapjoyreactnativesdkexample/ReactNativeFlipper.java +20 -0
- package/example/android/build.gradle +30 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/example/android/gradle.properties +44 -0
- package/example/android/gradlew +234 -0
- package/example/android/gradlew.bat +89 -0
- package/example/android/settings.gradle +4 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +17 -0
- package/example/index.js +5 -0
- package/example/ios/File.swift +6 -0
- package/example/ios/Podfile +63 -0
- package/example/ios/TapjoyReactNativeSdkExample/AppDelegate.h +6 -0
- package/example/ios/TapjoyReactNativeSdkExample/AppDelegate.mm +36 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/512.imageset/512.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/512.imageset/Contents.json +21 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/1024.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/120 1.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/120.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/180.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/40.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/58.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/60.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/80.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/87.png +0 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- package/example/ios/TapjoyReactNativeSdkExample/Images.xcassets/Contents.json +6 -0
- package/example/ios/TapjoyReactNativeSdkExample/Info.plist +59 -0
- package/example/ios/TapjoyReactNativeSdkExample/LaunchScreen.storyboard +46 -0
- package/example/ios/TapjoyReactNativeSdkExample/main.m +10 -0
- package/example/ios/TapjoyReactNativeSdkExample-Bridging-Header.h +3 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcodeproj/project.pbxproj +818 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcodeproj/xcshareddata/xcschemes/TapjoyReactNativeSdkExample.xcscheme +88 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/TapjoyReactNativeSdkExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/TapjoyReactNativeSdkExampleTests/Info.plist +24 -0
- package/example/ios/TapjoyReactNativeSdkExampleTests/TapjoyReactNativeSdkExampleTests.m +66 -0
- package/example/metro.config.js +40 -0
- package/example/package.json +32 -0
- package/example/react-native.config.js +10 -0
- package/example/src/App.tsx +27 -0
- package/example/src/Button.tsx +26 -0
- package/example/src/MainScreen.tsx +152 -0
- package/example/src/OfferwallScreen.tsx +172 -0
- package/example/src/Styles.ts +120 -0
- package/example/src/UserProperties.tsx +93 -0
- package/example/yarn-error.log +5090 -0
- package/example/yarn.lock +5029 -0
- package/package.json +15 -5
- package/lib/typescript/package/src/TJPlacement.d.ts +0 -17
- package/lib/typescript/package/src/TJPlacement.d.ts.map +0 -1
- package/lib/typescript/package/src/TJPrivacyPolicy.d.ts +0 -8
- package/lib/typescript/package/src/TJPrivacyPolicy.d.ts.map +0 -1
- package/lib/typescript/package/src/TJVersion.d.ts +0 -5
- package/lib/typescript/package/src/TJVersion.d.ts.map +0 -1
- package/lib/typescript/package/src/index.d.ts +0 -7
- package/lib/typescript/package/src/index.d.ts.map +0 -1
- package/lib/typescript/src/TJPlacement.d.ts +0 -17
- package/lib/typescript/src/TJPlacement.d.ts.map +0 -1
- package/lib/typescript/src/TJPrivacyPolicy.d.ts +0 -8
- package/lib/typescript/src/TJPrivacyPolicy.d.ts.map +0 -1
- package/lib/typescript/src/TJVersion.d.ts +0 -5
- package/lib/typescript/src/TJVersion.d.ts.map +0 -1
- package/lib/typescript/src/index.d.ts +0 -7
- package/lib/typescript/src/index.d.ts.map +0 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
|
3
|
+
<device id="retina4_7" orientation="portrait" appearance="light"/>
|
|
4
|
+
<dependencies>
|
|
5
|
+
<deployment identifier="iOS"/>
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21678"/>
|
|
7
|
+
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
8
|
+
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
|
9
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
10
|
+
</dependencies>
|
|
11
|
+
<scenes>
|
|
12
|
+
<!--View Controller-->
|
|
13
|
+
<scene sceneID="EHf-IW-A2E">
|
|
14
|
+
<objects>
|
|
15
|
+
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
16
|
+
<view key="view" contentMode="scaleToFill" ambiguous="YES" id="Ze5-6b-2t3">
|
|
17
|
+
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
|
18
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
19
|
+
<subviews>
|
|
20
|
+
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" placeholderIntrinsicWidth="300" placeholderIntrinsicHeight="300" image="512" id="5YZ-6w-2Af">
|
|
21
|
+
<rect key="frame" x="37" y="183" width="300" height="300"/>
|
|
22
|
+
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
|
|
23
|
+
<rect key="contentStretch" x="0.0" y="0.0" width="0.0" height="0.0"/>
|
|
24
|
+
<preferredSymbolConfiguration key="preferredSymbolConfiguration" scale="default"/>
|
|
25
|
+
</imageView>
|
|
26
|
+
</subviews>
|
|
27
|
+
<viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
|
|
28
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
29
|
+
<constraints>
|
|
30
|
+
<constraint firstItem="5YZ-6w-2Af" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="c4E-cc-1eU"/>
|
|
31
|
+
<constraint firstItem="5YZ-6w-2Af" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="cC6-sm-qPS"/>
|
|
32
|
+
</constraints>
|
|
33
|
+
</view>
|
|
34
|
+
</viewController>
|
|
35
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
36
|
+
</objects>
|
|
37
|
+
<point key="canvasLocation" x="52" y="374.66266866566718"/>
|
|
38
|
+
</scene>
|
|
39
|
+
</scenes>
|
|
40
|
+
<resources>
|
|
41
|
+
<image name="512" width="512" height="512"/>
|
|
42
|
+
<systemColor name="systemBackgroundColor">
|
|
43
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
44
|
+
</systemColor>
|
|
45
|
+
</resources>
|
|
46
|
+
</document>
|