@exodus/react-native-screenshot-detector 1.0.0 → 1.1.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.
Files changed (47) hide show
  1. package/RNScreenshotDetector.podspec +23 -0
  2. package/package.json +1 -1
  3. package/Example/.babelrc +0 -3
  4. package/Example/.buckconfig +0 -6
  5. package/Example/.flowconfig +0 -46
  6. package/Example/.gitattributes +0 -1
  7. package/Example/.watchmanconfig +0 -1
  8. package/Example/__tests__/index.android.js +0 -12
  9. package/Example/__tests__/index.ios.js +0 -12
  10. package/Example/android/app/BUCK +0 -66
  11. package/Example/android/app/build.gradle +0 -140
  12. package/Example/android/app/proguard-rules.pro +0 -66
  13. package/Example/android/app/src/main/AndroidManifest.xml +0 -32
  14. package/Example/android/app/src/main/java/com/example/MainActivity.java +0 -15
  15. package/Example/android/app/src/main/java/com/example/MainApplication.java +0 -46
  16. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  17. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  18. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  19. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  20. package/Example/android/app/src/main/res/values/strings.xml +0 -3
  21. package/Example/android/app/src/main/res/values/styles.xml +0 -8
  22. package/Example/android/build.gradle +0 -24
  23. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  24. package/Example/android/gradle/wrapper/gradle-wrapper.properties +0 -5
  25. package/Example/android/gradle.properties +0 -20
  26. package/Example/android/gradlew +0 -164
  27. package/Example/android/gradlew.bat +0 -90
  28. package/Example/android/keystores/BUCK +0 -8
  29. package/Example/android/keystores/debug.keystore.properties +0 -4
  30. package/Example/android/settings.gradle +0 -3
  31. package/Example/app.json +0 -4
  32. package/Example/index.android.js +0 -53
  33. package/Example/index.ios.js +0 -61
  34. package/Example/ios/Example/AppDelegate.h +0 -16
  35. package/Example/ios/Example/AppDelegate.m +0 -47
  36. package/Example/ios/Example/Base.lproj/LaunchScreen.xib +0 -42
  37. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
  38. package/Example/ios/Example/Info.plist +0 -57
  39. package/Example/ios/Example/main.m +0 -18
  40. package/Example/ios/Example-tvOS/Info.plist +0 -54
  41. package/Example/ios/Example-tvOSTests/Info.plist +0 -24
  42. package/Example/ios/Example.xcodeproj/project.pbxproj +0 -1328
  43. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme +0 -129
  44. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +0 -129
  45. package/Example/ios/ExampleTests/ExampleTests.m +0 -70
  46. package/Example/ios/ExampleTests/Info.plist +0 -24
  47. package/Example/package.json +0 -23
@@ -0,0 +1,23 @@
1
+ require 'json'
2
+
3
+ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
+
5
+ Pod::Spec.new do |s|
6
+ s.name = "RNScreenshotDetector"
7
+ s.version = package['version']
8
+ s.summary = package['description']
9
+ s.homepage = "https://github.com/ExodusMovement/react-native-screenshot-detector"
10
+ s.license = package['license']
11
+ s.author = package['author']
12
+ s.source = { :git => 'https://github.com/ExodusMovement/react-native-screenshot-detector.git', :tag => "v#{s.version}" }
13
+ s.default_subspec = 'Core'
14
+ s.requires_arc = true
15
+ s.platform = :ios, "7.0"
16
+
17
+ s.dependency 'React'
18
+
19
+ s.subspec 'Core' do |ss|
20
+ ss.source_files = "RNScreenshotDetector/*.{h,m}"
21
+ end
22
+
23
+ end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/react-native-screenshot-detector",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "detect when the user takes a screenshot",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/Example/.babelrc DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "presets": ["react-native"]
3
- }
@@ -1,6 +0,0 @@
1
-
2
- [android]
3
- target = Google Inc.:Google APIs:23
4
-
5
- [maven_repositories]
6
- central = https://repo1.maven.org/maven2
@@ -1,46 +0,0 @@
1
- [ignore]
2
- ; We fork some components by platform
3
- .*/*[.]android.js
4
-
5
- ; Ignore "BUCK" generated dirs
6
- <PROJECT_ROOT>/\.buckd/
7
-
8
- ; Ignore unexpected extra "@providesModule"
9
- .*/node_modules/.*/node_modules/fbjs/.*
10
-
11
- ; Ignore duplicate module providers
12
- ; For RN Apps installed via npm, "Libraries" folder is inside
13
- ; "node_modules/react-native" but in the source repo it is in the root
14
- .*/Libraries/react-native/React.js
15
- .*/Libraries/react-native/ReactNative.js
16
-
17
- [include]
18
-
19
- [libs]
20
- node_modules/react-native/Libraries/react-native/react-native-interface.js
21
- node_modules/react-native/flow
22
- flow/
23
-
24
- [options]
25
- emoji=true
26
-
27
- module.system=haste
28
-
29
- experimental.strict_type_args=true
30
-
31
- munge_underscores=true
32
-
33
- module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
34
-
35
- suppress_type=$FlowIssue
36
- suppress_type=$FlowFixMe
37
- suppress_type=$FixMe
38
-
39
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
40
- suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
41
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
42
-
43
- unsafe.enable_getters_and_setters=true
44
-
45
- [version]
46
- ^0.38.0
@@ -1 +0,0 @@
1
- *.pbxproj -text
@@ -1 +0,0 @@
1
- {}
@@ -1,12 +0,0 @@
1
- import 'react-native';
2
- import React from 'react';
3
- import Index from '../index.android.js';
4
-
5
- // Note: test renderer must be required after react-native.
6
- import renderer from 'react-test-renderer';
7
-
8
- it('renders correctly', () => {
9
- const tree = renderer.create(
10
- <Index />
11
- );
12
- });
@@ -1,12 +0,0 @@
1
- import 'react-native';
2
- import React from 'react';
3
- import Index from '../index.ios.js';
4
-
5
- // Note: test renderer must be required after react-native.
6
- import renderer from 'react-test-renderer';
7
-
8
- it('renders correctly', () => {
9
- const tree = renderer.create(
10
- <Index />
11
- );
12
- });
@@ -1,66 +0,0 @@
1
- import re
2
-
3
- # To learn about Buck see [Docs](https://buckbuild.com/).
4
- # To run your application with Buck:
5
- # - install Buck
6
- # - `npm start` - to start the packager
7
- # - `cd android`
8
- # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
9
- # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
10
- # - `buck install -r android/app` - compile, install and run application
11
- #
12
-
13
- lib_deps = []
14
- for jarfile in glob(['libs/*.jar']):
15
- name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile)
16
- lib_deps.append(':' + name)
17
- prebuilt_jar(
18
- name = name,
19
- binary_jar = jarfile,
20
- )
21
-
22
- for aarfile in glob(['libs/*.aar']):
23
- name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile)
24
- lib_deps.append(':' + name)
25
- android_prebuilt_aar(
26
- name = name,
27
- aar = aarfile,
28
- )
29
-
30
- android_library(
31
- name = 'all-libs',
32
- exported_deps = lib_deps
33
- )
34
-
35
- android_library(
36
- name = 'app-code',
37
- srcs = glob([
38
- 'src/main/java/**/*.java',
39
- ]),
40
- deps = [
41
- ':all-libs',
42
- ':build_config',
43
- ':res',
44
- ],
45
- )
46
-
47
- android_build_config(
48
- name = 'build_config',
49
- package = 'com.example',
50
- )
51
-
52
- android_resource(
53
- name = 'res',
54
- res = 'src/main/res',
55
- package = 'com.example',
56
- )
57
-
58
- android_binary(
59
- name = 'app',
60
- package_type = 'debug',
61
- manifest = 'src/main/AndroidManifest.xml',
62
- keystore = '//android/keystores:debug',
63
- deps = [
64
- ':app-code',
65
- ],
66
- )
@@ -1,140 +0,0 @@
1
- apply plugin: "com.android.application"
2
-
3
- import com.android.build.OutputFile
4
-
5
- /**
6
- * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7
- * and bundleReleaseJsAndAssets).
8
- * These basically call `react-native bundle` with the correct arguments during the Android build
9
- * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10
- * bundle directly from the development server. Below you can see all the possible configurations
11
- * and their defaults. If you decide to add a configuration block, make sure to add it before the
12
- * `apply from: "../../node_modules/react-native/react.gradle"` line.
13
- *
14
- * project.ext.react = [
15
- * // the name of the generated asset file containing your JS bundle
16
- * bundleAssetName: "index.android.bundle",
17
- *
18
- * // the entry file for bundle generation
19
- * entryFile: "index.android.js",
20
- *
21
- * // whether to bundle JS and assets in debug mode
22
- * bundleInDebug: false,
23
- *
24
- * // whether to bundle JS and assets in release mode
25
- * bundleInRelease: true,
26
- *
27
- * // whether to bundle JS and assets in another build variant (if configured).
28
- * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
29
- * // The configuration property can be in the following formats
30
- * // 'bundleIn${productFlavor}${buildType}'
31
- * // 'bundleIn${buildType}'
32
- * // bundleInFreeDebug: true,
33
- * // bundleInPaidRelease: true,
34
- * // bundleInBeta: true,
35
- *
36
- * // the root of your project, i.e. where "package.json" lives
37
- * root: "../../",
38
- *
39
- * // where to put the JS bundle asset in debug mode
40
- * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
41
- *
42
- * // where to put the JS bundle asset in release mode
43
- * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
44
- *
45
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
46
- * // require('./image.png')), in debug mode
47
- * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
48
- *
49
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
50
- * // require('./image.png')), in release mode
51
- * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
52
- *
53
- * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
54
- * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
55
- * // date; if you have any other folders that you want to ignore for performance reasons (gradle
56
- * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
57
- * // for example, you might want to remove it from here.
58
- * inputExcludes: ["android/**", "ios/**"],
59
- *
60
- * // override which node gets called and with what additional arguments
61
- * nodeExecutableAndArgs: ["node"]
62
- *
63
- * // supply additional arguments to the packager
64
- * extraPackagerArgs: []
65
- * ]
66
- */
67
-
68
- apply from: "../../node_modules/react-native/react.gradle"
69
- apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
70
-
71
- /**
72
- * Set this to true to create two separate APKs instead of one:
73
- * - An APK that only works on ARM devices
74
- * - An APK that only works on x86 devices
75
- * The advantage is the size of the APK is reduced by about 4MB.
76
- * Upload all the APKs to the Play Store and people will download
77
- * the correct one based on the CPU architecture of their device.
78
- */
79
- def enableSeparateBuildPerCPUArchitecture = false
80
-
81
- /**
82
- * Run Proguard to shrink the Java bytecode in release builds.
83
- */
84
- def enableProguardInReleaseBuilds = false
85
-
86
- android {
87
- compileSdkVersion 23
88
- buildToolsVersion "23.0.1"
89
-
90
- defaultConfig {
91
- applicationId "com.example"
92
- minSdkVersion 16
93
- targetSdkVersion 22
94
- versionCode 1
95
- versionName "1.0"
96
- ndk {
97
- abiFilters "armeabi-v7a", "x86"
98
- }
99
- }
100
- splits {
101
- abi {
102
- reset()
103
- enable enableSeparateBuildPerCPUArchitecture
104
- universalApk false // If true, also generate a universal APK
105
- include "armeabi-v7a", "x86"
106
- }
107
- }
108
- buildTypes {
109
- release {
110
- minifyEnabled enableProguardInReleaseBuilds
111
- proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
112
- }
113
- }
114
- // applicationVariants are e.g. debug, release
115
- applicationVariants.all { variant ->
116
- variant.outputs.each { output ->
117
- // For each separate APK per architecture, set a unique version code as described here:
118
- // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
119
- def versionCodes = ["armeabi-v7a":1, "x86":2]
120
- def abi = output.getFilter(OutputFile.ABI)
121
- if (abi != null) { // null for the universal-debug, universal-release variants
122
- output.versionCodeOverride =
123
- versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
124
- }
125
- }
126
- }
127
- }
128
-
129
- dependencies {
130
- compile fileTree(dir: "libs", include: ["*.jar"])
131
- compile "com.android.support:appcompat-v7:23.0.1"
132
- compile "com.facebook.react:react-native:+" // From node_modules
133
- }
134
-
135
- // Run this once to be able to run the application with BUCK
136
- // puts all compile dependencies into folder libs for BUCK to use
137
- task copyDownloadableDepsToLibs(type: Copy) {
138
- from configurations.compile
139
- into 'libs'
140
- }
@@ -1,66 +0,0 @@
1
- # Add project specific ProGuard rules here.
2
- # By default, the flags in this file are appended to flags specified
3
- # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4
- # You can edit the include path and order by changing the proguardFiles
5
- # directive in build.gradle.
6
- #
7
- # For more details, see
8
- # http://developer.android.com/guide/developing/tools/proguard.html
9
-
10
- # Add any project specific keep options here:
11
-
12
- # If your project uses WebView with JS, uncomment the following
13
- # and specify the fully qualified class name to the JavaScript interface
14
- # class:
15
- #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16
- # public *;
17
- #}
18
-
19
- # Disabling obfuscation is useful if you collect stack traces from production crashes
20
- # (unless you are using a system that supports de-obfuscate the stack traces).
21
- -dontobfuscate
22
-
23
- # React Native
24
-
25
- # Keep our interfaces so they can be used by other ProGuard rules.
26
- # See http://sourceforge.net/p/proguard/bugs/466/
27
- -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
28
- -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
29
- -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
30
-
31
- # Do not strip any method/class that is annotated with @DoNotStrip
32
- -keep @com.facebook.proguard.annotations.DoNotStrip class *
33
- -keep @com.facebook.common.internal.DoNotStrip class *
34
- -keepclassmembers class * {
35
- @com.facebook.proguard.annotations.DoNotStrip *;
36
- @com.facebook.common.internal.DoNotStrip *;
37
- }
38
-
39
- -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
40
- void set*(***);
41
- *** get*();
42
- }
43
-
44
- -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
45
- -keep class * extends com.facebook.react.bridge.NativeModule { *; }
46
- -keepclassmembers,includedescriptorclasses class * { native <methods>; }
47
- -keepclassmembers class * { @com.facebook.react.uimanager.UIProp <fields>; }
48
- -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
49
- -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
50
-
51
- -dontwarn com.facebook.react.**
52
-
53
- # okhttp
54
-
55
- -keepattributes Signature
56
- -keepattributes *Annotation*
57
- -keep class okhttp3.** { *; }
58
- -keep interface okhttp3.** { *; }
59
- -dontwarn okhttp3.**
60
-
61
- # okio
62
-
63
- -keep class sun.misc.Unsafe { *; }
64
- -dontwarn java.nio.file.*
65
- -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
66
- -dontwarn okio.**
@@ -1,32 +0,0 @@
1
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="com.example"
3
- android:versionCode="1"
4
- android:versionName="1.0">
5
-
6
- <uses-permission android:name="android.permission.INTERNET" />
7
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
8
-
9
- <uses-sdk
10
- android:minSdkVersion="16"
11
- android:targetSdkVersion="22" />
12
-
13
- <application
14
- android:name=".MainApplication"
15
- android:allowBackup="true"
16
- android:label="@string/app_name"
17
- android:icon="@mipmap/ic_launcher"
18
- android:theme="@style/AppTheme">
19
- <activity
20
- android:name=".MainActivity"
21
- android:label="@string/app_name"
22
- android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
23
- android:windowSoftInputMode="adjustResize">
24
- <intent-filter>
25
- <action android:name="android.intent.action.MAIN" />
26
- <category android:name="android.intent.category.LAUNCHER" />
27
- </intent-filter>
28
- </activity>
29
- <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
30
- </application>
31
-
32
- </manifest>
@@ -1,15 +0,0 @@
1
- package com.example;
2
-
3
- import com.facebook.react.ReactActivity;
4
-
5
- public class MainActivity extends ReactActivity {
6
-
7
- /**
8
- * Returns the name of the main component registered from JavaScript.
9
- * This is used to schedule rendering of the component.
10
- */
11
- @Override
12
- protected String getMainComponentName() {
13
- return "Example";
14
- }
15
- }
@@ -1,46 +0,0 @@
1
- package com.example;
2
-
3
- import android.app.Application;
4
-
5
- import com.facebook.react.ReactApplication;
6
- import com.facebook.react.ReactNativeHost;
7
- import com.facebook.react.ReactPackage;
8
- import com.facebook.react.shell.MainReactPackage;
9
- import com.facebook.soloader.SoLoader;
10
-
11
- import java.util.Arrays;
12
- import java.util.List;
13
-
14
- public class MainApplication extends Application implements ReactApplication {
15
-
16
- private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
17
-
18
- @Override
19
- protected String getJSBundleFile() {
20
- return CodePush.getJSBundleFile();
21
- }
22
-
23
- @Override
24
- public boolean getUseDeveloperSupport() {
25
- return BuildConfig.DEBUG;
26
- }
27
-
28
- @Override
29
- protected List<ReactPackage> getPackages() {
30
- return Arrays.<ReactPackage>asList(
31
- new MainReactPackage()
32
- );
33
- }
34
- };
35
-
36
- @Override
37
- public ReactNativeHost getReactNativeHost() {
38
- return mReactNativeHost;
39
- }
40
-
41
- @Override
42
- public void onCreate() {
43
- super.onCreate();
44
- SoLoader.init(this, /* native exopackage */ false);
45
- }
46
- }
@@ -1,3 +0,0 @@
1
- <resources>
2
- <string name="app_name">Example</string>
3
- </resources>
@@ -1,8 +0,0 @@
1
- <resources>
2
-
3
- <!-- Base application theme. -->
4
- <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
5
- <!-- Customize your theme here. -->
6
- </style>
7
-
8
- </resources>
@@ -1,24 +0,0 @@
1
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
-
3
- buildscript {
4
- repositories {
5
- jcenter()
6
- }
7
- dependencies {
8
- classpath 'com.android.tools.build:gradle:2.2.3'
9
-
10
- // NOTE: Do not place your application dependencies here; they belong
11
- // in the individual module build.gradle files
12
- }
13
- }
14
-
15
- allprojects {
16
- repositories {
17
- mavenLocal()
18
- jcenter()
19
- maven {
20
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
21
- url "$rootDir/../node_modules/react-native/android"
22
- }
23
- }
24
- }
@@ -1,5 +0,0 @@
1
- distributionBase=GRADLE_USER_HOME
2
- distributionPath=wrapper/dists
3
- zipStoreBase=GRADLE_USER_HOME
4
- zipStorePath=wrapper/dists
5
- distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
@@ -1,20 +0,0 @@
1
- # Project-wide Gradle settings.
2
-
3
- # IDE (e.g. Android Studio) users:
4
- # Gradle settings configured through the IDE *will override*
5
- # any settings specified in this file.
6
-
7
- # For more details on how to configure your build environment visit
8
- # http://www.gradle.org/docs/current/userguide/build_environment.html
9
-
10
- # Specifies the JVM arguments used for the daemon process.
11
- # The setting is particularly useful for tweaking memory settings.
12
- # Default value: -Xmx10248m -XX:MaxPermSize=256m
13
- # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14
-
15
- # When configured, Gradle will run in incubating parallel mode.
16
- # This option should only be used with decoupled projects. More details, visit
17
- # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18
- # org.gradle.parallel=true
19
-
20
- android.useDeprecatedNdk=true