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. ...@@ -55,6 +55,7 @@ as that of the covered work.
<activity <activity
android:name=".client.SFLPhoneHome" android:name=".client.SFLPhoneHome"
android:label="@string/title_activity_sflphone_home" android:label="@string/title_activity_sflphone_home"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
...@@ -62,17 +63,22 @@ as that of the covered work. ...@@ -62,17 +63,22 @@ as that of the covered work.
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name=".client.SFLPhonePreferenceActivity" > <activity
android:name=".client.SFLPhonePreferenceActivity"
android:screenOrientation="portrait" >
<meta-data <meta-data
android:name="android.support.PARENT_ACTIVITY" android:name="android.support.PARENT_ACTIVITY"
android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" /> android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" />
</activity> </activity>
<activity android:name=".client.AccountCreationActivity" <activity android:name=".client.AccountCreationActivity"
android:label="@string/app_name"/> android:label="@string/app_name"
android:screenOrientation="portrait"/>
<activity android:name=".client.AccountPreferenceActivity" <activity android:name=".client.AccountPreferenceActivity"
android:label="@string/app_name"/> android:label="@string/app_name"
android:screenOrientation="portrait"/>
<activity android:name=".client.CallActivity" <activity android:name=".client.CallActivity"
android:label="@string/app_name"/> android:label="@string/app_name"
android:screenOrientation="portrait"/>
<receiver <receiver
android:name=".client.receiver.NewOutgoingCallReceiver" android:name=".client.receiver.NewOutgoingCallReceiver"
android:exported="true" > 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