Skip to content
Snippets Groups Projects
Commit 2e5c4e2f authored by Emeric Vigier's avatar Emeric Vigier
Browse files

#17220: fix each activity's orientation to portrait

parent 6c3e78d6
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,7 @@ as that of the covered work.
<activity
android:name=".client.SFLPhoneHome"
android:label="@string/title_activity_sflphone_home"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
......@@ -62,17 +63,22 @@ as that of the covered work.
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".client.SFLPhonePreferenceActivity" >
<activity
android:name=".client.SFLPhonePreferenceActivity"
android:screenOrientation="portrait" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" />
</activity>
<activity android:name=".client.AccountCreationActivity"
android:label="@string/app_name"/>
android:label="@string/app_name"
android:screenOrientation="portrait"/>
<activity android:name=".client.AccountPreferenceActivity"
android:label="@string/app_name"/>
android:label="@string/app_name"
android:screenOrientation="portrait"/>
<activity android:name=".client.CallActivity"
android:label="@string/app_name"/>
android:label="@string/app_name"
android:screenOrientation="portrait"/>
<receiver
android:name=".client.receiver.NewOutgoingCallReceiver"
android:exported="true" >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment