File tree Expand file tree Collapse file tree 8 files changed +120
-22
lines changed
src/components/button/__tests__/__snapshots__ Expand file tree Collapse file tree 8 files changed +120
-22
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ node_modules/react-native/Libraries/polyfills/.*
11
11
; Flow doesn't support platforms
12
12
.*/Libraries/Utilities/LoadingView.js
13
13
14
- exact_by_default=true
15
-
16
14
[untyped]
17
15
.*/node_modules/@react-native-community/cli/.*/.*
18
16
@@ -25,8 +23,7 @@ node_modules/react-native/flow/
25
23
[options]
26
24
emoji=true
27
25
28
- esproposal.optional_chaining=enable
29
- esproposal.nullish_coalescing=enable
26
+ exact_by_default=true
30
27
31
28
module.file_ext=.js
32
29
module.file_ext=.json
@@ -52,7 +49,6 @@ deprecated-type=warn
52
49
unsafe-getters-setters=warn
53
50
unnecessary-invariant=warn
54
51
signature-verification-failure=warn
55
- deprecated-utility=error
56
52
57
53
[strict]
58
54
deprecated-type
@@ -64,4 +60,4 @@ untyped-import
64
60
untyped-type-import
65
61
66
62
[version]
67
- ^0.137 .0
63
+ ^0.149 .0
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ android {
17
17
compileSdkVersion rootProject. ext. compileSdkVersion
18
18
ndkVersion rootProject. ext. ndkVersion
19
19
20
- compileOptions {
21
- sourceCompatibility JavaVersion . VERSION_1_8
22
- targetCompatibility JavaVersion . VERSION_1_8
23
- }
24
-
25
20
defaultConfig {
26
21
applicationId " com.rnuilib"
27
22
minSdkVersion rootProject. ext. minSdkVersion
@@ -111,7 +106,7 @@ dependencies {
111
106
// Run this once to be able to run the application with BUCK
112
107
// puts all compile dependencies into folder libs for BUCK to use
113
108
task copyDownloadableDepsToLibs (type : Copy ) {
114
- from configurations. compile
109
+ from configurations. implementation
115
110
into ' libs'
116
111
}
117
112
Original file line number Diff line number Diff line change 2
2
3
3
buildscript {
4
4
ext {
5
- buildToolsVersion = " 29 .0.3 "
5
+ buildToolsVersion = " 30 .0.2 "
6
6
minSdkVersion = 21
7
- compileSdkVersion = 29
8
- targetSdkVersion = 29
7
+ compileSdkVersion = 30
8
+ targetSdkVersion = 30
9
9
ndkVersion = " 20.1.5948944"
10
10
RNNKotlinVersion = " 1.3.61" // Or any version above 1.3.x
11
11
}
12
12
repositories {
13
13
mavenLocal()
14
14
mavenCentral()
15
15
google()
16
- jcenter()
17
16
}
18
17
dependencies {
19
18
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$RNNKotlinVersion "
20
- classpath(" com.android.tools.build:gradle:4.1.0 " )
19
+ classpath(" com.android.tools.build:gradle:4.2.1 " )
21
20
22
21
// NOTE: Do not place your application dependencies here; they belong
23
22
// in the individual module build.gradle files
@@ -26,6 +25,7 @@ buildscript {
26
25
27
26
allprojects {
28
27
repositories {
28
+ mavenCentral()
29
29
mavenLocal()
30
30
maven {
31
31
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ android.useAndroidX=true
21
21
android.enableJetifier =true
22
22
23
23
# Version of flipper SDK to use with React Native
24
- FLIPPER_VERSION =0.75.1
24
+ FLIPPER_VERSION =0.93.0
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.9 -all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 389
389
);
390
390
inputPaths = (
391
391
"${PODS_ROOT}/Target Support Files/Pods-rnuilib-rnuilibTests/Pods-rnuilib-rnuilibTests-frameworks.sh",
392
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/double-conversion/double-conversion.framework/double-conversion",
392
393
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
393
394
);
394
395
name = "[CP] Embed Pods Frameworks";
395
396
outputPaths = (
397
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework",
396
398
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
397
399
);
398
400
runOnlyForDeploymentPostprocessing = 0;
439
441
);
440
442
inputPaths = (
441
443
"${PODS_ROOT}/Target Support Files/Pods-rnuilib/Pods-rnuilib-frameworks.sh",
444
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/double-conversion/double-conversion.framework/double-conversion",
442
445
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
443
446
);
444
447
name = "[CP] Embed Pods Frameworks";
445
448
outputPaths = (
449
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework",
446
450
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
447
451
);
448
452
runOnlyForDeploymentPostprocessing = 0;
Original file line number Diff line number Diff line change 93
93
"gatsby" : " ^2.21.21" ,
94
94
"gh-pages" : " ^1.1.0" ,
95
95
"jest" : " ^26.6.3" ,
96
- "metro-react-native-babel-preset" : " ^0.64 .0" ,
96
+ "metro-react-native-babel-preset" : " ^0.66 .0" ,
97
97
"mocha" : " ^5.0.0" ,
98
98
"prettier-eslint" : " 12.0.0" ,
99
- "react" : " 17.0.1 " ,
99
+ "react" : " 17.0.2 " ,
100
100
"react-autobind" : " ^1.0.6" ,
101
101
"react-dom" : " ^15.4.2" ,
102
- "react-native" : " 0.64.1" ,
102
+ "react-native" : " 0.65.1" ,
103
+ "react-native-codegen" : " ^0.0.7" ,
103
104
"react-native-gesture-handler" : " 1.10.3" ,
104
105
"react-native-haptic-feedback" : " ^1.11.0" ,
105
106
"react-native-keyboard-tracking-view" : " ^5.6.1" ,
You can’t perform that action at this time.
0 commit comments