@exodus/react-native-screenshot-detector 1.0.0
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/.babelrc +3 -0
- package/Example/.buckconfig +6 -0
- package/Example/.flowconfig +46 -0
- package/Example/.gitattributes +1 -0
- package/Example/.watchmanconfig +1 -0
- package/Example/__tests__/index.android.js +12 -0
- package/Example/__tests__/index.ios.js +12 -0
- package/Example/android/app/BUCK +66 -0
- package/Example/android/app/build.gradle +140 -0
- package/Example/android/app/proguard-rules.pro +66 -0
- package/Example/android/app/src/main/AndroidManifest.xml +32 -0
- package/Example/android/app/src/main/java/com/example/MainActivity.java +15 -0
- package/Example/android/app/src/main/java/com/example/MainApplication.java +46 -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/values/strings.xml +3 -0
- package/Example/android/app/src/main/res/values/styles.xml +8 -0
- package/Example/android/build.gradle +24 -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 +20 -0
- package/Example/android/gradlew +164 -0
- package/Example/android/gradlew.bat +90 -0
- package/Example/android/keystores/BUCK +8 -0
- package/Example/android/keystores/debug.keystore.properties +4 -0
- package/Example/android/settings.gradle +3 -0
- package/Example/app.json +4 -0
- package/Example/index.android.js +53 -0
- package/Example/index.ios.js +61 -0
- package/Example/ios/Example/AppDelegate.h +16 -0
- package/Example/ios/Example/AppDelegate.m +47 -0
- package/Example/ios/Example/Base.lproj/LaunchScreen.xib +42 -0
- package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- package/Example/ios/Example/Info.plist +57 -0
- package/Example/ios/Example/main.m +18 -0
- package/Example/ios/Example-tvOS/Info.plist +54 -0
- package/Example/ios/Example-tvOSTests/Info.plist +24 -0
- package/Example/ios/Example.xcodeproj/project.pbxproj +1328 -0
- package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme +129 -0
- package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +129 -0
- package/Example/ios/ExampleTests/ExampleTests.m +70 -0
- package/Example/ios/ExampleTests/Info.plist +24 -0
- package/Example/package.json +23 -0
- package/LICENSE +21 -0
- package/README.md +32 -0
- package/android/build.gradle +36 -0
- package/android/src/main/AndroidManifest.xml +6 -0
- package/android/src/main/java/com/reactlibrary/RNScreenshotDetectorModule.java +49 -0
- package/android/src/main/java/com/reactlibrary/RNScreenshotDetectorPackage.java +28 -0
- package/index.android.js +13 -0
- package/index.d.ts +6 -0
- package/index.ios.js +15 -0
- package/ios/RNScreenshotDetector/RNScreenshotDetector.h +14 -0
- package/ios/RNScreenshotDetector/RNScreenshotDetector.m +45 -0
- package/ios/RNScreenshotDetector.xcodeproj/project.pbxproj +271 -0
- package/package.json +17 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>en</string>
|
|
7
|
+
<key>CFBundleExecutable</key>
|
|
8
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
9
|
+
<key>CFBundleIdentifier</key>
|
|
10
|
+
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
|
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
+
<string>6.0</string>
|
|
13
|
+
<key>CFBundleName</key>
|
|
14
|
+
<string>$(PRODUCT_NAME)</string>
|
|
15
|
+
<key>CFBundlePackageType</key>
|
|
16
|
+
<string>BNDL</string>
|
|
17
|
+
<key>CFBundleShortVersionString</key>
|
|
18
|
+
<string>1.0</string>
|
|
19
|
+
<key>CFBundleSignature</key>
|
|
20
|
+
<string>????</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>1</string>
|
|
23
|
+
</dict>
|
|
24
|
+
</plist>
|