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.8KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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:theme="@style/AppTheme">
  9. <activity
  10. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
  11. android:label="@string/app_name"
  12. android:launchMode="singleTask"
  13. android:name=".MainActivity"
  14. android:resizeableActivity="true"
  15. android:supportsPictureInPicture="true"
  16. android:windowSoftInputMode="adjustResize">
  17. <intent-filter>
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. <intent-filter>
  22. <action android:name="android.intent.action.VIEW" />
  23. <category android:name="android.intent.category.BROWSABLE" />
  24. <category android:name="android.intent.category.DEFAULT" />
  25. <data android:host="beta.hipchat.me" android:scheme="https" />
  26. <data android:host="beta.meet.jit.si" android:scheme="https" />
  27. <data android:host="chaos.hipchat.me" android:scheme="https" />
  28. <data android:host="enso.me" android:scheme="https" />
  29. <data android:host="hipchat.me" android:scheme="https" />
  30. <data android:host="meet.jit.si" android:scheme="https" />
  31. </intent-filter>
  32. <intent-filter>
  33. <action android:name="android.intent.action.VIEW" />
  34. <category android:name="android.intent.category.BROWSABLE" />
  35. <category android:name="android.intent.category.DEFAULT" />
  36. <data android:scheme="org.jitsi.meet" />
  37. </intent-filter>
  38. </activity>
  39. </application>
  40. </manifest>