You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <manifest
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.jitsi.meet">
  4. <application
  5. android:allowBackup="true"
  6. android:icon="@mipmap/ic_launcher"
  7. android:label="@string/app_name"
  8. android:name=".MainApplication"
  9. android:networkSecurityConfig="@xml/network_security_config"
  10. android:theme="@style/AppTheme">
  11. <activity
  12. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
  13. android:label="@string/app_name"
  14. android:launchMode="singleTask"
  15. android:name=".MainActivity"
  16. android:resizeableActivity="true"
  17. android:supportsPictureInPicture="true"
  18. android:windowSoftInputMode="adjustResize">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. <intent-filter>
  24. <action android:name="android.intent.action.VIEW" />
  25. <category android:name="android.intent.category.BROWSABLE" />
  26. <category android:name="android.intent.category.DEFAULT" />
  27. <data android:host="beta.meet.jit.si" android:scheme="https" />
  28. <data android:host="meet.jit.si" android:scheme="https" />
  29. </intent-filter>
  30. <intent-filter>
  31. <action android:name="android.intent.action.VIEW" />
  32. <category android:name="android.intent.category.BROWSABLE" />
  33. <category android:name="android.intent.category.DEFAULT" />
  34. <data android:scheme="org.jitsi.meet" />
  35. </intent-filter>
  36. </activity>
  37. </application>
  38. </manifest>