2017-03-09 14:29:23 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-19 13:36:27 -05:00
|
|
|
package="io.github.wulkanowy">
|
2017-03-09 14:29:23 -06:00
|
|
|
|
2017-04-04 13:37:12 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-04-29 08:27:38 -05:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-04-04 13:37:12 -05:00
|
|
|
|
2017-03-09 14:29:23 -06:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2017-04-03 15:37:17 -05:00
|
|
|
android:theme="@android:style/Theme.DeviceDefault">
|
|
|
|
<activity
|
2017-04-09 08:05:59 -05:00
|
|
|
android:name=".activity.started.StartedActivity"
|
2017-04-29 08:27:38 -05:00
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@style/NoActionBar">
|
2017-03-09 14:29:23 -06:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-04-04 05:37:26 -05:00
|
|
|
<activity
|
|
|
|
android:name=".activity.main.MainActivity"
|
2017-06-30 09:02:21 -05:00
|
|
|
android:label="@string/login_title" />
|
2017-04-29 08:27:38 -05:00
|
|
|
<activity
|
|
|
|
android:name=".activity.dashboard.DashboardActivity"
|
2017-06-30 09:02:21 -05:00
|
|
|
android:label="@string/title_activity_dashboard"
|
|
|
|
android:theme="@style/Theme.AppCompat" />
|
2017-03-09 14:29:23 -06:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|