我是React native的新手,我想导出我的whatsapp聊天并将其共享到我的react native应用。
有两个软件包可以提供帮助:
https://www.npmjs.com/package/react-native-file-share-intent
https://github.com/meedan/react-native-share-menu。
我尝试了第二个软件包,因为如果我们使用react-navigation,则第一个软件包将无法正常工作,因此我安装了第二个软件包,它工作得很好,但是在我遇到两个问题之后:
我在GitHub仓库中推送了我的代码,该仓库的链接是:
https://github.com/BalaRajendran/sharemenu-reactnative
App.js-https://github.com/BalaRajendran/sharemenu-reactnative/blob/master/App.js
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
fileUrl: null,
};
}
componentDidMount() {
if (RNFileShareIntent) {
RNFileShareIntent.getFilepath((url) => {
this.setState({ fileUrl: url });
})
}
}
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sharemenu">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize"
>
<intent-filter>
///changed code according to react-native-share-menu
<action android:name="android.intent.action.PICK"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
<data android:mimeType="image/*" />
<data android:mimeType="file/*" />
<data android:mimeType="application/*" />
//
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>
所以你能帮我解决我的问题吗,