MonochromeDeveloperUiLauncherManifest.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2020 The Chromium Authors. All rights reserved. Use of this
  4. source code is governed by a BSD-style license that can be found in the
  5. LICENSE file.
  6. -->
  7. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  8. package="org.chromium.android_webview.devui">
  9. <uses-sdk android:minSdkVersion="24" />
  10. <!-- This should only be merged to Monochrome manifest -->
  11. <!--suppress HardcodedText -->
  12. <application>
  13. <activity-alias android:name="org.chromium.android_webview.devui.MonochromeLauncherActivity"
  14. android:targetActivity="org.chromium.android_webview.devui.MainActivity"
  15. android:label="WebView DevTools"
  16. android:exported="true"
  17. android:enabled="false">
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN"/>
  20. <category android:name="android.intent.category.LAUNCHER"/>
  21. </intent-filter>
  22. </activity-alias>
  23. </application>
  24. </manifest>