<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name="dev.cranpose.android.CranposeActivity"
android:exported="true"
android:launchMode="singleTask"
android:label="${cranposeLabel}"
android:theme="${cranposeTheme}"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode|layoutDirection|fontScale|density">
<meta-data
android:name="android.app.lib_name"
android:value="${cranposeLibName}" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="dev.cranpose.android.CranposeShareProvider"
android:authorities="${applicationId}.cranpose.share"
android:exported="false"
android:grantUriPermissions="true" />
</application>
</manifest>