<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
package="org.appspot.apprtc">
|
|
<application>
|
|
<activity
|
android:name="ConnectActivity"
|
android:label="@string/app_name"
|
android:theme="@style/AppTheme"
|
android:screenOrientation="portrait"
|
android:windowSoftInputMode="adjustPan">
|
|
<intent-filter>
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data
|
android:host="appr.tc"
|
android:scheme="https" />
|
<data
|
android:host="appr.tc"
|
android:scheme="http" />
|
</intent-filter>
|
</activity>
|
|
<activity
|
android:name="SettingsActivity"
|
android:label="@string/settings_name"
|
android:theme="@style/AppTheme"></activity>
|
|
<activity
|
android:name="CallActivity"
|
android:configChanges="orientation|smallestScreenSize|screenSize|screenLayout"
|
android:label="@string/app_name"
|
android:screenOrientation="portrait"
|
android:theme="@style/CallActivityTheme"></activity>
|
</application>
|
</manifest>
|