2017-09-14 12:14:54 -05:00
|
|
|
<manifest
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-03 14:50:47 +02:00
|
|
|
package="org.jitsi.meet"
|
|
|
|
|
android:installLocation="auto">
|
2017-07-16 02:23:01 -05:00
|
|
|
<application
|
2017-09-14 12:14:54 -05:00
|
|
|
android:allowBackup="true"
|
2021-09-28 13:51:08 +03:00
|
|
|
android:extractNativeLibs="true"
|
2017-09-14 12:14:54 -05:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-10-05 09:36:59 -05:00
|
|
|
android:label="@string/app_name"
|
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">
|
2020-06-26 12:47:48 +03:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.content.APP_RESTRICTIONS"
|
|
|
|
|
android:resource="@xml/app_restrictions" />
|
2017-09-14 12:14:54 -05:00
|
|
|
<activity
|
2022-04-28 14:25:07 +02:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
|
2021-09-30 14:24:01 +03:00
|
|
|
android:exported="true"
|
2017-09-14 12:14:54 -05:00
|
|
|
android:label="@string/app_name"
|
2023-05-11 13:16:13 +02:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
|
android:taskAffinity=""
|
2017-09-14 12:14:54 -05:00
|
|
|
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" />
|
2019-05-01 19:28:32 +02:00
|
|
|
<data android:host="alpha.jitsi.net" android:scheme="https" />
|
2017-07-16 02:23:01 -05:00
|
|
|
<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>
|