Edit

kc3-lang/angle/android/AndroidManifest.xml

Branch :

  • Show log

    Commit

  • Author : Tim Van Patten
    Date : 2021-05-05 18:20:27
    Hash : 417d912a
    Message : Remove Settings GUI from AOSP Builds and make product-specific The Settings GUI is being removed from the AOSP build to turn the ANGLE APK into essentially a container APK containing the necessary libraries. This reduces the APK size and reduces the risk of users enabling ANGLE by accident. Additionally, ANGLE is being marked product-specific to remove it from all AOSP builds. Bug: b/187345862 Change-Id: I6e1acb9c6e07b419d40aee43d7260060027999ec Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2876213 Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Tim Van Patten <timvp@google.com>

  • android/AndroidManifest.xml
  • <?xml version="1.0" encoding="utf-8"?>
    <!--
      Copyright 2021 The ANGLE Project Authors. All rights reserved.  Use of this
      source code is governed by a BSD-style license that can be found in the
      LICENSE file.
    -->
    
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              package="com.android.angle">
    
        <application android:label="Angle for Android"
                     android:extractNativeLibs="false"
                     android:multiArch="true">
        </application>
    </manifest>