Skip to content

Commit 07e978b

Browse files
author
Supriya
committed
Ejected from CRNA - expo 23
1 parent a5c93f2 commit 07e978b

File tree

345 files changed

+8346
-7669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

345 files changed

+8346
-7669
lines changed

.eslintrc

Lines changed: 230 additions & 16 deletions
Large diffs are not rendered by default.

.flowconfig

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
; For RN Apps installed via npm, "Libraries" folder is inside
1313
; "node_modules/react-native" but in the source repo it is in the root
1414
.*/Libraries/react-native/React.js
15-
.*/Libraries/react-native/ReactNative.js
15+
16+
; Ignore polyfills
17+
.*/Libraries/polyfills/.*
1618

1719
[include]
1820

1921
[libs]
2022
node_modules/react-native/Libraries/react-native/react-native-interface.js
21-
node_modules/react-native/flow
22-
flow/
23+
node_modules/react-native/flow/
2324

2425
[options]
2526
emoji=true
@@ -32,14 +33,16 @@ module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|we
3233

3334
suppress_type=$FlowIssue
3435
suppress_type=$FlowFixMe
36+
suppress_type=$FlowFixMeProps
37+
suppress_type=$FlowFixMeState
3538
suppress_type=$FixMe
3639

37-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-7]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
38-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-7]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
40+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
41+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
3942
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
4043
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
4144

4245
unsafe.enable_getters_and_setters=true
4346

4447
[version]
45-
^0.47.0
48+
^0.56.0

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ buck-out/
4646
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
4747
# screenshots whenever they are needed.
4848
# For more information about the recommended setup visit:
49-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
49+
# https://docs.fastlane.tools/best-practices/source-control/
5050

51-
fastlane/report.xml
52-
fastlane/Preview.html
53-
fastlane/screenshots
51+
*/fastlane/report.xml
52+
*/fastlane/Preview.html
53+
*/fastlane/screenshots

App.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
import React from "react";
2-
import App from "./js/App";
3-
4-
export default class App1 extends React.Component {
5-
constructor() {
6-
super();
7-
this.state = {
8-
isReady: false
9-
};
10-
}
2+
import Setup from "./src/boot/setup";
113

4+
export default class App extends React.Component {
125
render() {
13-
return <App />;
6+
return <Setup />;
147
}
158
}

App.test.js

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

ChangeLog.md

Lines changed: 17 additions & 5 deletions

LICENSE

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

README.md

Lines changed: 75 additions & 37 deletions

android/app/build.gradle

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ import com.android.build.OutputFile
7272
* ]
7373
*/
7474

75+
project.ext.react = [
76+
entryFile: "index.js"
77+
]
78+
7579
apply from: "../../node_modules/react-native/react.gradle"
7680

7781
/**
@@ -103,16 +107,6 @@ android {
103107
abiFilters "armeabi-v7a", "x86"
104108
}
105109
}
106-
signingConfigs {
107-
release {
108-
if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
109-
storeFile file(MYAPP_RELEASE_STORE_FILE)
110-
storePassword MYAPP_RELEASE_STORE_PASSWORD
111-
keyAlias MYAPP_RELEASE_KEY_ALIAS
112-
keyPassword MYAPP_RELEASE_KEY_PASSWORD
113-
}
114-
}
115-
}
116110
splits {
117111
abi {
118112
reset()
@@ -125,7 +119,6 @@ android {
125119
release {
126120
minifyEnabled enableProguardInReleaseBuilds
127121
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
128-
signingConfig signingConfigs.release
129122
}
130123
}
131124
// applicationVariants are e.g. debug, release
Binary file not shown.

0 commit comments

Comments
 (0)