github.com/coming-chat/gomobile@v0.0.0-20220601074111-56995f7d7aba/example/network/AndroidManifest.xml (about) 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright 2015 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="org.golang.todo.network" 10 android:versionCode="1" 11 android:versionName="1.0"> 12 13 <!-- In order to access the network, your application manifest must 14 specify the permission requirement. See the following page for 15 details. 16 http://developer.android.com/guide/topics/manifest/manifest-intro.html#perms --> 17 <uses-permission android:name="android.permission.INTERNET" /> 18 19 <application android:label="network" android:debuggable="true"> 20 21 <activity android:name="org.golang.app.GoNativeActivity" 22 android:label="network" 23 android:configChanges="orientation|keyboardHidden"> 24 <meta-data android:name="android.app.lib_name" android:value="network" /> 25 <intent-filter> 26 <action android:name="android.intent.action.MAIN" /> 27 <category android:name="android.intent.category.LAUNCHER" /> 28 </intent-filter> 29 </activity> 30 </application> 31 </manifest>