Mercurial
comparison gara/android/tutorial/src/main/java/com/example/bazel/AndroidManifest.xml @ 46:b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Thu, 04 Dec 2025 06:50:40 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 45:ac8626c7859c | 46:b9a40c633c93 |
|---|---|
| 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> |