2017-09-14 12:14:54 -05:00
|
|
|
<manifest
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="org.jitsi.meet">
|
2017-07-16 02:23:01 -05:00
|
|
|
<application
|
2017-09-14 12:14:54 -05:00
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-10-05 09:36:59 -05:00
|
|
|
android:label="@string/app_name"
|
2018-08-28 16:32:35 +02:00
|
|
|
android:name=".MainApplication"
|
2018-12-19 13:08:59 +01:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2017-09-14 12:14:54 -05:00
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
<activity
|
2018-02-19 16:52:21 -06:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
2017-09-14 12:14:54 -05:00
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:name=".MainActivity"
|
2018-02-01 17:02:07 +01:00
|
|
|
android:resizeableActivity="true"
|
|
|
|
|
android:supportsPictureInPicture="true"
|
2017-09-14 12:14:54 -05:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2018-12-28 10:38:56 +01:00
|
|
|
<meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" />
|
2017-07-16 02:23:01 -05: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.meet.jit.si" 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 09:36:59 -05:00
|
|
|
</manifest>
|