Skip to content

Commit

Permalink
Merge pull request #111 from simple-login/fix/strandhogg-mitigations
Browse files Browse the repository at this point in the history
fix: standhogg mitigations
  • Loading branch information
ntnhon authored May 2, 2023
2 parents 65f47f0 + 3790f40 commit 5a0e754
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions SimpleLogin/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:taskAffinity=""
android:theme="@style/AppTheme">

<activity android:name=".module.startup.StartupActivity"
Expand Down Expand Up @@ -88,12 +89,13 @@
/>
</intent-filter>
</activity>
<activity android:name=".module.login.VerificationActivity" />
<activity android:name=".module.login.SignUpActivity" />
<activity android:name=".module.login.AboutActivity" />
<activity android:name=".module.login.VerificationActivity" android:launchMode="singleInstance" />
<activity android:name=".module.login.SignUpActivity" android:launchMode="singleInstance" />
<activity android:name=".module.login.AboutActivity" android:launchMode="singleInstance" />

<!--ShareActivity-->
<activity android:name=".module.share.ShareActivity"
android:launchMode="singleInstance"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />
Expand Down

0 comments on commit 5a0e754

Please sign in to comment.