2017-09-14 17:14:54 +00:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.jitsi.meet">
|
2017-07-16 07:23:01 +00:00
|
|
|
<application
|
2017-09-14 17:14:54 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-10-05 14:36:59 +00:00
|
|
|
android:label="@string/app_name"
|
2017-09-14 17:14:54 +00:00
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
2017-07-16 07:23:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:host="beta.hipchat.me" android:scheme="https" />
|
|
|
|
<data android:host="beta.meet.jit.si" android:scheme="https" />
|
|
|
|
<data android:host="chaos.hipchat.me" android:scheme="https" />
|
|
|
|
<data android:host="enso.me" android:scheme="https" />
|
|
|
|
<data android:host="hipchat.me" android:scheme="https" />
|
|
|
|
<data android:host="meet.jit.si" android:scheme="https" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="org.jitsi.meet" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2016-10-05 14:36:59 +00:00
|
|
|
</manifest>
|