選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AndroidManifest.xml 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <!--
  2. Copyright 2019 Google Inc. All Rights Reserved.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <!-- The "package" attribute is rewritten by the Gradle build with the value of applicationId.
  14. It is still required here, as it is used to derive paths, for instance when referring
  15. to an Activity by ".MyActivity" instead of the full name. If more Activities are added to the
  16. application, the package attribute will need to reflect the correct path in order to use
  17. the abbreviated format. -->
  18. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  19. package="org.jitsi.meet">
  20. <application
  21. android:name="Application"
  22. android:allowBackup="true"
  23. android:icon="@mipmap/ic_launcher"
  24. android:label="@string/appName"
  25. android:manageSpaceActivity="com.google.androidbrowserhelper.trusted.ManageDataLauncherActivity"
  26. android:supportsRtl="true"
  27. android:theme="@android:style/Theme.Translucent.NoTitleBar">
  28. <meta-data
  29. android:name="asset_statements"
  30. android:resource="@string/assetStatements" />
  31. <meta-data
  32. android:name="web_manifest_url"
  33. android:value="@string/webManifestUrl" />
  34. <meta-data
  35. android:name="twa_generator"
  36. android:value="@string/generatorApp" />
  37. <activity android:name="com.google.androidbrowserhelper.trusted.ManageDataLauncherActivity">
  38. <meta-data
  39. android:name="android.support.customtabs.trusted.MANAGE_SPACE_URL"
  40. android:value="@string/launchUrl" />
  41. </activity>
  42. <activity android:name="LauncherActivity"
  43. android:label="@string/launcherName">
  44. <meta-data android:name="android.support.customtabs.trusted.DEFAULT_URL"
  45. android:value="@string/launchUrl" />
  46. <meta-data
  47. android:name="android.support.customtabs.trusted.STATUS_BAR_COLOR"
  48. android:resource="@color/colorPrimary" />
  49. <meta-data
  50. android:name="android.support.customtabs.trusted.NAVIGATION_BAR_COLOR"
  51. android:resource="@color/navigationColor" />
  52. <meta-data
  53. android:name="android.support.customtabs.trusted.NAVIGATION_BAR_COLOR_DARK"
  54. android:resource="@color/navigationColorDark" />
  55. <meta-data
  56. android:name="androix.browser.trusted.NAVIGATION_BAR_DIVIDER_COLOR"
  57. android:resource="@color/navigationDividerColor" />
  58. <meta-data
  59. android:name="androix.browser.trusted.NAVIGATION_BAR_DIVIDER_COLOR_DARK"
  60. android:resource="@color/navigationDividerColorDark" />
  61. <meta-data android:name="android.support.customtabs.trusted.SPLASH_IMAGE_DRAWABLE"
  62. android:resource="@drawable/splash"/>
  63. <meta-data android:name="android.support.customtabs.trusted.SPLASH_SCREEN_BACKGROUND_COLOR"
  64. android:resource="@color/backgroundColor"/>
  65. <meta-data android:name="android.support.customtabs.trusted.SPLASH_SCREEN_FADE_OUT_DURATION"
  66. android:value="@integer/splashScreenFadeOutDuration"/>
  67. <meta-data android:name="android.support.customtabs.trusted.FILE_PROVIDER_AUTHORITY"
  68. android:value="@string/providerAuthority"/>
  69. <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" />
  70. <meta-data android:name="android.support.customtabs.trusted.FALLBACK_STRATEGY"
  71. android:value="@string/fallbackType" />
  72. <intent-filter>
  73. <action android:name="android.intent.action.MAIN" />
  74. <category android:name="android.intent.category.LAUNCHER" />
  75. </intent-filter>
  76. <intent-filter android:autoVerify="true">
  77. <action android:name="android.intent.action.VIEW"/>
  78. <category android:name="android.intent.category.DEFAULT" />
  79. <category android:name="android.intent.category.BROWSABLE"/>
  80. <data android:scheme="https"
  81. android:host="@string/hostName"/>
  82. </intent-filter>
  83. </activity>
  84. <activity android:name="com.google.androidbrowserhelper.trusted.FocusActivity" />
  85. <activity android:name="com.google.androidbrowserhelper.trusted.WebViewFallbackActivity"
  86. android:configChanges="orientation|screenSize" />
  87. <provider
  88. android:name="androidx.core.content.FileProvider"
  89. android:authorities="@string/providerAuthority"
  90. android:grantUriPermissions="true"
  91. android:exported="false">
  92. <meta-data
  93. android:name="android.support.FILE_PROVIDER_PATHS"
  94. android:resource="@xml/filepaths" />
  95. </provider>
  96. <service
  97. android:name="com.google.androidbrowserhelper.trusted.DelegationService"
  98. android:enabled="@bool/enableNotification"
  99. android:exported="@bool/enableNotification">
  100. <intent-filter>
  101. <action android:name="android.support.customtabs.trusted.TRUSTED_WEB_ACTIVITY_SERVICE"/>
  102. <category android:name="android.intent.category.DEFAULT"/>
  103. </intent-filter>
  104. </service>
  105. </application>
  106. </manifest>