Edit

kc3-lang/angle/AndroidManifest.xml

Branch :

  • Show log

    Commit

  • Author : Cody Northrop
    Date : 2018-11-29 09:00:08
    Hash : 2c0e06d9
    Message : Add temporary icon for ANGLE apk Even though we don't plan to be launchable, we need to include an icon for plumbing reasons. For now I'm using a temporary icon pulled from our Cubey sample. When we get something official we can easily swap it in, and enhance it support multiple dpis. Bug: angleproject:2991 Change-Id: I2873d74586543c617cfc13fe6582b0b4967cbb22 Reviewed-on: https://chromium-review.googlesource.com/c/1355505 Reviewed-by: Courtney Goeltzenleuchter <courtneygo@google.com> Reviewed-by: Tim Van Patten <timvp@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>

  • AndroidManifest.xml
  • <?xml version="1.0" encoding="utf-8"?>
    <!--
      Copyright 2018 The Chromium 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.google.android.angle">
        <uses-sdk android:minSdkVersion="26"
                  android:targetSdkVersion="28">
        </uses-sdk>
    
        <application android:label="Android System Angle"
            android:icon="@com.google.android.angle:drawable/icon"
            android:extractNativeLibs="false"
            android:multiArch="true"
            android:hasCode="false">
        </application>
    </manifest>