DeveloperUiLauncherManifest.xml 974 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (c) 2019 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="21" />
  10. <!--suppress HardcodedText -->
  11. <application>
  12. <activity-alias android:name="org.chromium.android_webview.devui.LauncherActivity"
  13. android:targetActivity="org.chromium.android_webview.devui.MainActivity"
  14. android:label="WebView DevTools"
  15. android:exported="true">
  16. <intent-filter>
  17. <action android:name="android.intent.action.MAIN"/>
  18. <category android:name="android.intent.category.LAUNCHER"/>
  19. </intent-filter>
  20. </activity-alias>
  21. </application>
  22. </manifest>