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

AndroidManifest.xml 1.9KB

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