github.com/SkycoinProject/gomobile@v0.0.0-20190312151609-d3739f865fa6/example/bind/android/app/src/main/AndroidManifest.xml (about) 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright 2015 The Go Authors. All rights reserved. 3 Use of this source code is governed by a BSD-style 4 license that can be found in the LICENSE file. --> 5 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 6 package="org.golang.example.bind" > 7 8 <application 9 android:allowBackup="true" 10 android:label="GoBindExample"> 11 <activity 12 android:name=".MainActivity" 13 android:label="GoBindExample" > 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 17 <category android:name="android.intent.category.LAUNCHER" /> 18 </intent-filter> 19 </activity> 20 </application> 21 22 </manifest>