mirror of
https://github.com/wismna/DoNext.git
synced 2025-12-06 08:12:37 -05:00
18 lines
707 B
XML
18 lines
707 B
XML
|
|
<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>
|