File tree 7 files changed +1536
-5617
lines changed
7 files changed +1536
-5617
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,19 @@ android {
43
43
exclude ' META-INF/*.kotlin_module'
44
44
pickFirst ' META-INF/AL2.0'
45
45
pickFirst ' META-INF/LGPL2.1'
46
- }
46
+ pickFirst ' META-INF/LICENSE.md'
47
+ pickFirst ' META-INF/LICENSE-notice.md'
48
+
49
+ // ED Required for Android Instrumented tests; mismatch between RN version of example app and of actual package
50
+ pickFirst ' lib/x86/libc++_shared.so'
51
+ pickFirst ' lib/x86_64/libc++_shared.so'
52
+ pickFirst ' lib/armeabi-v7a/libc++_shared.so'
53
+ pickFirst ' lib/arm64-v8a/libc++_shared.so'
54
+ pickFirst ' lib/x86/libfbjni.so'
55
+ pickFirst ' lib/x86_64/libfbjni.so'
56
+ pickFirst ' lib/armeabi-v7a/libfbjni.so'
57
+ pickFirst ' lib/arm64-v8a/libfbjni.so'
58
+ }
47
59
48
60
sourceSets {
49
61
androidTest {
Original file line number Diff line number Diff line change 1
- BlobCourier_coroutinesVersion = 1.3 .+
2
- BlobCourier_espressoVersion = 3.4 .+
1
+ BlobCourier_coroutinesVersion = 1.6 .+
2
+ BlobCourier_espressoVersion = 3.5 .+
3
3
BlobCourier_gradleToolsVersion = 7.0.+
4
4
BlobCourier_junitVersion = 4.13.+
5
- BlobCourier_kotlinVersion = 1.7.10
5
+ BlobCourier_kotlinVersion = 1.8.+
6
6
BlobCourier_localbroadcastmanagerVersion = 1.1.+
7
- BlobCourier_mockkVersion = 1.12.+
7
+ # Hardcoded mockkVersion b/c https://github.com/mockk/mockk/issues/1035
8
+ BlobCourier_mockkVersion = 1.13.3
8
9
BlobCourier_multidexVersion = 2.0.+
9
10
BlobCourier_okhttpVersion = 4.10.+
10
11
BlobCourier_robolectricVersion = 4.+
Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ const UploaderView = (props: UVProps) => {
221
221
return ;
222
222
}
223
223
224
- // eslint-disable-next-line no-undef
225
224
const abortController = new AbortController ( ) ;
226
225
setCanceller ( ( ) => ( ) => {
227
226
abortController . abort ( ) ;
@@ -329,7 +328,6 @@ const DownloaderView = (props: DVProps) => {
329
328
return ;
330
329
}
331
330
332
- // eslint-disable-next-line no-undef
333
331
const abortController = new AbortController ( ) ;
334
332
setCanceller ( ( ) => ( ) => {
335
333
abortController . abort ( ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 53
53
"@babel/core" : " ^7.12.9" ,
54
54
"@babel/preset-env" : " ^7.1.6" ,
55
55
"@commitlint/config-conventional" : " ^16.2.1" ,
56
- "@react-native-community/eslint-config" : " ^2.0 .0" ,
56
+ "@react-native-community/eslint-config" : " ^3.2 .0" ,
57
57
"@semantic-release/git" : " ^10.0.1" ,
58
58
"@semantic-release/github" : " ^8.0.2" ,
59
59
"@semantic-release/npm" : " ^9.0.1" ,
63
63
"@types/react-native" : " 0.64.10" ,
64
64
"abort-controller" : " ^3.0.0" ,
65
65
"commitlint" : " ^16.2.3" ,
66
- "eslint" : " ^7.22 .0" ,
67
- "eslint-config-prettier" : " ^7.0 .0" ,
68
- "eslint-plugin-prettier" : " ^3.1.3 " ,
66
+ "eslint" : " ^8.34 .0" ,
67
+ "eslint-config-prettier" : " ^8.6 .0" ,
68
+ "eslint-plugin-prettier" : " ^4.2.1 " ,
69
69
"husky" : " ^7.0.4" ,
70
70
"jest" : " ^27.3.1" ,
71
71
"jest-junit" : " ^13.0.0" ,
76
76
"react-native-builder-bob" : " ^0.18.0" ,
77
77
"react-native-codegen" : " ^0.0.12" ,
78
78
"semantic-release" : " ^19.0.2" ,
79
- "typescript" : " 4.0.8 "
79
+ "typescript" : " ^4.6.3 "
80
80
},
81
81
"peerDependencies" : {
82
82
"react" : " *" ,
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ const getLastMockCallFirstParameter = (m: any) =>
91
91
const generateValue = ( type : string ) =>
92
92
type in RANDOM_VALUE_GENERATORS ? RANDOM_VALUE_GENERATORS [ type ] ( ) : uuid ( ) ;
93
93
94
- const createRandomObjectFromDefault = < T , > ( o : T ) : T =>
94
+ const createRandomObjectFromDefault = < T extends { } > ( o : T ) : T =>
95
95
Object . keys ( o ) . reduce (
96
96
( p , c ) => ( {
97
97
...p ,
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments