github.com/shranet/mobile@v0.0.0-20200814083559-5702cdcd481b/internal/binres/testdata/bootstrap.xml (about)

     1  <?xml version="1.0" encoding="utf-8"?>
     2  <!--
     3  Copyright 2014 The Go Authors. All rights reserved.
     4  Use of this source code is governed by a BSD-style
     5  license that can be found in the LICENSE file.
     6  -->
     7  <manifest
     8  	xmlns:android="http://schemas.android.com/apk/res/android"
     9  	package="com.zentus.balloon"
    10  	android:versionCode="42"
    11  	android:versionName=""
    12  	xmlns:tools="http://schemas.android.com/tools">
    13  
    14  	<uses-permission android:name="android.permission.INTERNET" />
    15  
    16  	<application
    17  			android:label="Balloon世界"
    18  			android:allowBackup="true"
    19  			android:hasCode="false"
    20  			android:icon="@mipmap/icon"
    21  			foo="bar"
    22  			android:debuggable="true"
    23  			baz="bar"
    24  			tools:strict="label">
    25  	<activity android:name="android.app.NativeActivity"
    26  		android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
    27  		android:label="Balloon"
    28  		android:screenOrientation="portrait"
    29  		android:configChanges="orientation|keyboardHidden">
    30  		<meta-data android:name="android.app.lib_name" android:value="balloon" />
    31  		<intent-filter>
    32  			here is some text
    33  			<action android:name="android.intent.action.MAIN" />
    34  			<category android:name="android.intent.category.LAUNCHER" />
    35  		</intent-filter>
    36  	</activity>
    37  	</application>
    38  </manifest>