AndroidManifest.xml 1.1 KB

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