react-native-share-menu
Advanced tools
Comparing version 1.3.1 to 1.4.0
{ | ||
"name": "react-native-share-menu", | ||
"description": "Adds the app to share menu, so it can be launched from share menu and receive data from other apps", | ||
"version": "1.3.1", | ||
"version": "1.4.0", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -43,3 +43,3 @@ # react-native-share-menu | ||
* In `android/app/src/main/AndroidManifest.xml` | ||
* In `android/app/src/main/AndroidManifest.xml` in the `<activity>` tag: | ||
@@ -54,3 +54,3 @@ ```xml | ||
* Register module (in MainActivity.java) | ||
* Register module (in MainApplication.java) | ||
@@ -60,3 +60,3 @@ ```java | ||
public class MainActivity extends ReactActivity { | ||
public class MainApplication extends Application implements ReactApplication { | ||
...... | ||
@@ -67,3 +67,3 @@ @Override | ||
new MainReactPackage(), | ||
new ShareMenuPackage(this) // <------ add here | ||
new ShareMenuPackage() // <------ add here | ||
); | ||
@@ -70,0 +70,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
299622
65