bootstrap.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <uses-permission android:name="android.permission.INTERNET" />
  14. <application
  15. android:label="Balloon世界"
  16. android:allowBackup="true"
  17. android:hasCode="false"
  18. android:icon="@mipmap/icon"
  19. foo="bar"
  20. android:debuggable="true"
  21. baz="bar"
  22. tools:strict="label">
  23. <activity android:name="android.app.NativeActivity"
  24. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  25. android:label="Balloon"
  26. android:screenOrientation="portrait"
  27. android:configChanges="orientation|keyboardHidden">
  28. <meta-data android:name="android.app.lib_name" android:value="balloon" />
  29. <intent-filter>
  30. here is some text
  31. <action android:name="android.intent.action.MAIN" />
  32. <category android:name="android.intent.category.LAUNCHER" />
  33. </intent-filter>
  34. </activity>
  35. </application>
  36. </manifest>