Files
metabuilder/caproverforge/app/src/main/AndroidManifest.xml
T
git 1710684e29 feat: Add CaproverForge Android app for CapRover management
Android client for managing CapRover PaaS deployments - deploy apps,
manage containers, and monitor server status from mobile.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:25:33 +00:00

26 lines
902 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>