Files
donext/donextv2/src/main/AndroidManifest.xml

18 lines
707 B
XML
Raw Normal View History

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:name=".DonextApplication">
<activity
android:name="com.wismna.geoffroy.donext.presentation.MainActivity"
android:exported="true"
android:label="@string/title_activity_main"
android:theme="@style/Theme.DoNext">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>