github.com/c-darwin/mobile@v0.0.0-20160313183840-ff625c46f7c9/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 <uses-sdk android:minSdkVersion="9" /> 14 15 <!-- In order to access the network, your application manifest must 16 specify the permission requirement. See the following page for 17 details. 18 http://developer.android.com/guide/topics/manifest/manifest-intro.html#perms --> 19 <uses-permission android:name="android.permission.INTERNET" /> 20 21 <application android:label="network" android:debuggable="true"> 22 23 <activity android:name="org.golang.app.GoNativeActivity" 24 android:label="network" 25 android:configChanges="orientation|keyboardHidden"> 26 <meta-data android:name="android.app.lib_name" android:value="network" /> 27 <intent-filter> 28 <action android:name="android.intent.action.MAIN" /> 29 <category android:name="android.intent.category.LAUNCHER" /> 30 </intent-filter> 31 </activity> 32 </application> 33 </manifest>