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

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