mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-10 16:00:27 -06:00
38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="io.github.wulkanowy"
|
|
android:installLocation="internalOnly">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppCompat">
|
|
<activity
|
|
android:name=".activity.started.StartedActivity"
|
|
android:noHistory="true"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
android:configChanges="orientation|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".activity.main.MainActivity"
|
|
android:label="@string/login_title"
|
|
android:configChanges="orientation|screenSize"
|
|
android:windowSoftInputMode="adjustResize" />
|
|
<activity
|
|
android:name=".activity.dashboard.DashboardActivity"
|
|
android:label="@string/title_activity_dashboard"
|
|
android:configChanges="orientation|screenSize"/>
|
|
</application>
|
|
|
|
</manifest> |