| 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.example.bazel" |
| 3 | android:versionCode="1" |
| 4 | android:versionName="1.0" > |
| 5 | |
| 6 | <uses-sdk |
| 7 | android:minSdkVersion="21" |
| 8 | android:targetSdkVersion="26" /> |
| 9 | |
| 10 | <application |
| 11 | android:label="Bazel Tutorial App"> |
| 12 | <activity |
| 13 | android:name=".MainActivity" |
| 14 | android:label="Bazel Tutorial App" > |
| 15 | <intent-filter> |
| 16 | <action android:name="android.intent.action.MAIN" /> |
| 17 | <category android:name="android.intent.category.LAUNCHER" /> |
| 18 | </intent-filter> |
| 19 | </activity> |
| 20 | </application> |
| 21 | </manifest> |