Files
compose-multiplatform/examples/chat/androidApp/src/androidMain/AndroidManifest.xml
Nikita Lipsky a8003a0f5d Move experimental/examples to examples (#2976)
* Move experimental/examples to examples

* Change version to 1.4.0-rc01
2023-04-05 08:57:39 +03:00

22 lines
732 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.jetbrains.chat">
<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<activity
android:exported="true"
android:name="MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>