Skip to content

Commit 442d624

Browse files
Updated to version v4.3.3
1 parent dfe5b99 commit 442d624

File tree

5 files changed

+15997
-7311
lines changed

5 files changed

+15997
-7311
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ local.properties
3939
# node.js
4040
#
4141
node_modules/
42-
package-lock.json # include if you are using npm - don't use both yarn and npm
4342
npm-debug.log
4443
yarn-error.log
4544
yarn.lock # include if you are using yarn - don't use both npm and yarn
@@ -90,7 +89,6 @@ example/development2
9089
example/development
9190
# Build file for local testing
9291
cometchat-pro-react-native-ui-kit-1.0.0.tgz
93-
package-lock.json
9492
Pods
9593
.idea
9694
.gradle

android/app/src/main/java/com/demosampleapp/MainActivity.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@
44
import com.facebook.react.ReactActivityDelegate;
55
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
66
import com.facebook.react.defaults.DefaultReactActivityDelegate;
7+
import android.os.Bundle;
78

89
public class MainActivity extends ReactActivity {
910

11+
//react-native-screens override
12+
@Override
13+
protected void onCreate(Bundle savedInstanceState) {
14+
super.onCreate(null);
15+
}
16+
1017
/**
1118
* Returns the name of the main component registered from JavaScript. This is used to schedule
1219
* rendering of the component.

0 commit comments

Comments
 (0)