Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit 54b68a0

Browse files
author
evgenii
committed
Changed an application screen orientation to the portrait mode.
1 parent ef716c9 commit 54b68a0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.blogspot.e_kanivets.moneytracker" >
3+
package="com.blogspot.e_kanivets.moneytracker">
44

55
<!-- permissions to download and cache video ads for playback -->
66
<uses-permission android:name="android.permission.INTERNET" />
@@ -12,10 +12,11 @@
1212
android:allowBackup="true"
1313
android:icon="@drawable/ic_launcher"
1414
android:label="@string/app_name"
15-
android:theme="@style/Theme.Default" >
15+
android:theme="@style/Theme.Default">
1616
<activity
1717
android:name=".activity.SplashActivity"
18-
android:theme="@style/Theme.NoTitle" >
18+
android:screenOrientation="portrait"
19+
android:theme="@style/Theme.NoTitle">
1920
<intent-filter>
2021
<action android:name="android.intent.action.MAIN" />
2122

@@ -31,8 +32,8 @@
3132
<activity
3233
android:name=".activity.NavDrawerActivity"
3334
android:label="@string/app_name"
34-
android:theme="@style/Theme.Default">
35-
</activity>
35+
android:screenOrientation="portrait"
36+
android:theme="@style/Theme.Default" />
3637
</application>
3738

3839
</manifest>

0 commit comments

Comments
 (0)