diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index a2ab740..9f2e97e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -16,7 +16,6 @@ android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:launchMode="singleTask" android:networkSecurityConfig="@xml/network_security_config" android:theme="@style/AppTheme"> diff --git a/src/page/NotificationPage.js b/src/page/NotificationPage.js index 3a87a76..1f1eeb7 100644 --- a/src/page/NotificationPage.js +++ b/src/page/NotificationPage.js @@ -160,7 +160,7 @@ export default class NotificationPage extends Component { } Navigation.mergeOptions(this.props.componentId, { bottomTab: { - badge: msgCount > 0 ? msgCount.toString() : null, + badge: msgCount > 0 ? msgCount.toString() : (Platform.OS === 'ios' ? null : ''), } }); }