Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

AndroidManifest.xml 1.6KB

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