view gara/android/tutorial/src/main/java/com/example/bazel/AndroidManifest.xml @ 71:75de5903355c

Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
author June Park <parkjune1995@gmail.com>
date Sun, 28 Dec 2025 20:34:22 -0800
parents b9a40c633c93
children
line wrap: on
line source

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.bazel"
    android:versionCode="1"
    android:versionName="1.0" >

  <uses-sdk
      android:minSdkVersion="21"
      android:targetSdkVersion="26" />

  <application
      android:label="Bazel Tutorial App">
    <activity
        android:name=".MainActivity"
        android:label="Bazel Tutorial App" >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>
</manifest>