Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AndroidManifest.xml 1.7KB

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:theme="@style/AppTheme">
  9. <activity
  10. android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
  11. android:label="@string/app_name"
  12. android:launchMode="singleTask"
  13. android:name=".MainActivity"
  14. android:windowSoftInputMode="adjustResize">
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN" />
  17. <category android:name="android.intent.category.LAUNCHER" />
  18. </intent-filter>
  19. <intent-filter>
  20. <action android:name="android.intent.action.VIEW" />
  21. <category android:name="android.intent.category.BROWSABLE" />
  22. <category android:name="android.intent.category.DEFAULT" />
  23. <data android:host="beta.hipchat.me" android:scheme="https" />
  24. <data android:host="beta.meet.jit.si" android:scheme="https" />
  25. <data android:host="chaos.hipchat.me" android:scheme="https" />
  26. <data android:host="enso.me" android:scheme="https" />
  27. <data android:host="hipchat.me" 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>