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

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:name=".MainApplication"
  9. android:networkSecurityConfig="@xml/network_security_config"
  10. android:theme="@style/AppTheme">
  11. <activity
  12. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
  13. android:label="@string/app_name"
  14. android:launchMode="singleTask"
  15. android:name=".MainActivity"
  16. android:resizeableActivity="true"
  17. android:supportsPictureInPicture="true"
  18. android:windowSoftInputMode="adjustResize">
  19. <meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" />
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. <intent-filter>
  25. <action android:name="android.intent.action.VIEW" />
  26. <category android:name="android.intent.category.BROWSABLE" />
  27. <category android:name="android.intent.category.DEFAULT" />
  28. <data android:host="alpha.jitsi.net" android:scheme="https" />
  29. <data android:host="beta.meet.jit.si" 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>