github.com/pojntfx/hydrapp/hydrapp@v0.0.0-20240516002902-d08759d6ca9f/pkg/renderers/apk/manifest.xml (about)

     1  <?xml version="1.0" encoding="utf-8"?>
     2  <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="{{ .AppID }}"
     3      android:versionCode="{{ .BranchTimestampUNIX }}" android:versionName="{{ (LastRelease .AppReleases).Version }}-{{ .BranchTimestampUNIX }}">
     4      <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="34" />
     5  
     6      <uses-permission android:name="android.permission.INTERNET" />
     7  
     8      <application android:label="{{ .AppName }}" android:icon="@drawable/icon"
     9          android:usesCleartextTraffic="true">
    10          <activity android:name=".MainActivity" android:exported="true"
    11              android:configChanges="orientation|screenSize">
    12              <intent-filter>
    13                  <action android:name="android.intent.action.MAIN" />
    14                  <category android:name="android.intent.category.LAUNCHER" />
    15              </intent-filter>
    16          </activity>
    17      </application>
    18  </manifest>