Edit

kc3-lang/angle/AndroidManifest.xml

Branch :

  • Show log

    Commit

  • Author : Courtney Goeltzenleuchter
    Date : 2018-09-17 17:18:30
    Hash : 89652a35
    Message : Fix AndroidManifest package name Cannot have package name with 'google' in it, it is not dependent on Google, ANGLE is an open source project. Bug=angleproject:2418 Change-Id: If69be10b2d60789d0cce30b631249927026c5c0e Reviewed-on: https://chromium-review.googlesource.com/1229434 Reviewed-by: Cody Northrop <cnorthrop@google.com> 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.android.angle">
        <uses-sdk android:minSdkVersion="26"
                  android:targetSdkVersion="28">
        </uses-sdk>
    
        <application android:label="Android System Angle"
            android:extractNativeLibs="false"
            android:multiArch="true"
            android:hasCode="false">
        </application>
    </manifest>