Skip to content
This repository has been archived by the owner on Oct 27, 2023. It is now read-only.

Commit

Permalink
Fixed orientation
Browse files Browse the repository at this point in the history
  • Loading branch information
liang799 committed Feb 4, 2022
1 parent cda60b9 commit 0543167
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@
android:value="${MAPS_API_KEY}" /> <!-- Stored in local.properties -->
<activity
android:name=".activities.LoginActivity"
android:exported="false" />
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".activities.SplashScreen"
android:exported="true">
android:exported="true"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -43,7 +45,8 @@
</activity>
<activity
android:name=".activities.MainActivity"
android:exported="false" />
android:exported="false"
android:screenOrientation="portrait" />
</application>

</manifest>

0 comments on commit 0543167

Please sign in to comment.