Skip to content

Commit 45fa547

Browse files
Final commit for 2.11.0
1 parent 90143d5 commit 45fa547

File tree

18 files changed

+373
-337
lines changed

18 files changed

+373
-337
lines changed

DemoApp/.flowconfig

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@
1616
; Ignore polyfills
1717
.*/Libraries/polyfills/.*
1818

19+
; Ignore metro
20+
.*/node_modules/metro/.*
21+
1922
[include]
2023

2124
[libs]
2225
node_modules/react-native/Libraries/react-native/react-native-interface.js
2326
node_modules/react-native/flow/
27+
node_modules/react-native/flow-github/
2428

2529
[options]
2630
emoji=true
@@ -31,18 +35,20 @@ munge_underscores=true
3135

3236
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'
3337

38+
module.file_ext=.js
39+
module.file_ext=.jsx
40+
module.file_ext=.json
41+
module.file_ext=.native.js
42+
3443
suppress_type=$FlowIssue
3544
suppress_type=$FlowFixMe
3645
suppress_type=$FlowFixMeProps
3746
suppress_type=$FlowFixMeState
38-
suppress_type=$FixMe
3947

40-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
41-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
48+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
49+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
4250
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
4351
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
4452

45-
unsafe.enable_getters_and_setters=true
46-
4753
[version]
48-
^0.57.0
54+
^0.65.0

DemoApp/android/app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def enableProguardInReleaseBuilds = false
9595

9696
android {
9797
compileSdkVersion 27
98-
buildToolsVersion '27.0.2'
98+
buildToolsVersion '27.0.3'
9999
defaultConfig {
100100
applicationId "com.demoapp"
101101
minSdkVersion 19
@@ -123,7 +123,6 @@ android {
123123
}
124124
dexOptions {
125125
javaMaxHeapSize "4g"
126-
incremental true
127126
preDexLibraries true
128127
}
129128
// applicationVariants are e.g. debug, release

DemoApp/android/app/proguard-rules.pro

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,26 @@
7474
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
7575
-dontwarn okio.**
7676

77+
# Jumio
78+
79+
-keep class com.jumio.** { *; }
80+
-keep class jumio.** { *; }
81+
-keep class com.samsung.** { *; }
82+
-keep class com.samsung.**$* { *; }
83+
-keep class com.microblink.** { *; }
84+
-keep class com.microblink.**$* { *; }
85+
86+
-keep class net.sf.scuba.smartcards.IsoDepCardService {*;}
87+
-keep class org.jmrtd.** { *; }
88+
-keep class net.sf.scuba.** {*;}
89+
-keep class org.spongycastle.** {*;}
90+
-keep class org.ejbca.** {*;}
91+
92+
-dontwarn java.nio.**
93+
-dontwarn org.codehaus.**
94+
-dontwarn org.ejbca.**
95+
-dontwarn org.spongycastle.**
96+
-dontwarn com.samsung.**
97+
-dontwarn com.microblink.**
98+
7799

DemoApp/android/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ buildscript {
44
repositories {
55
jcenter()
66
maven { url 'https://maven.google.com/' }
7-
}
7+
google()
8+
}
89
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.1'
10+
classpath 'com.android.tools.build:gradle:3.1.0'
1011

1112
// NOTE: Do not place your application dependencies here; they belong
1213
// in the individual module build.gradle files

DemoApp/android/gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@
1818
# org.gradle.parallel=true
1919

2020
android.useDeprecatedNdk=true
21-
android.enableAapt2=false
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Nov 30 13:29:45 CET 2017
1+
#Wed Mar 28 10:26:16 CEST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

DemoApp/ios/DemoApp.xcodeproj/project.pbxproj

Lines changed: 268 additions & 143 deletions
Large diffs are not rendered by default.

DemoApp/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp-tvOS.xcscheme

Lines changed: 0 additions & 129 deletions
This file was deleted.

DemoApp/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0830"
3+
LastUpgradeVersion = "0620"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "NO"

DemoApp/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ source 'https://github.com/CocoaPods/Specs.git'
66
use_frameworks!
77

88
target "DemoApp" do
9-
pod 'JumioMobileSDK', '2.10.0'
9+
pod 'JumioMobileSDK', '2.11.0'
1010
end

0 commit comments

Comments
 (0)