mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 12:57:04 +05:30
23 lines
838 B
XML
23 lines
838 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="dev.msfjarvis.claw.android"
|
|
>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<application
|
|
android:label="Claw"
|
|
android:allowBackup="false"
|
|
android:supportsRtl="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:name=".ClawApplication"
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|
>
|
|
<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>
|