10
0
MetaPluginAndroidDemo/app/src/main/AndroidManifest.xml
andre 24a0ae42d3 [MWA-5265] Meta Demo: Theming via xml testen
{Update app theme to WebId.PluginTheme}
2025-11-18 09:10:24 +01:00

24 lines
866 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.webidsolutions.metaplugindemo">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:localeConfig="@xml/locales_config"
android:theme="@style/WebId.PluginTheme">
<activity
android:name="de.webidsolutions.metaplugindemo.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>