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-07-20 16:30:33 -05:00
|
|
|
package="io.github.wulkanowy"
|
|
|
|
android:installLocation="internalOnly">
|
2017-03-09 14:29:23 -06:00
|
|
|
|
2017-04-04 13:37:12 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-09-10 05:50:28 -05:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2017-04-04 13:37:12 -05:00
|
|
|
|
2017-03-09 14:29:23 -06:00
|
|
|
<application
|
2018-01-02 14:55:58 -06:00
|
|
|
android:name=".WulkanowyApp"
|
2018-05-07 10:44:28 -05:00
|
|
|
android:allowBackup="false"
|
2017-03-09 14:29:23 -06:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2017-08-29 07:22:55 -05:00
|
|
|
android:theme="@style/WulkanowyTheme">
|
2017-04-03 15:37:17 -05:00
|
|
|
<activity
|
2017-12-11 12:45:28 -06:00
|
|
|
android:name=".ui.splash.SplashActivity"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
2017-04-29 08:27:38 -05:00
|
|
|
android:noHistory="true"
|
2018-03-04 05:49:16 -06:00
|
|
|
android:theme="@style/WulkanowyTheme.SplashTheme">
|
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
|
2017-12-11 12:45:28 -06:00
|
|
|
android:name=".ui.login.LoginActivity"
|
2017-07-22 10:19:10 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
2017-10-27 10:48:17 -05:00
|
|
|
android:label="@string/title_activity_login"
|
2018-06-14 04:40:46 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.DarkActionBar"
|
2017-07-22 10:19:10 -05:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2017-04-29 08:27:38 -05:00
|
|
|
<activity
|
2018-03-04 05:49:16 -06:00
|
|
|
android:name=".ui.main.MainActivity"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
2018-04-24 16:52:53 -05:00
|
|
|
android:label="@string/activity_dashboard_text"
|
2018-07-18 14:13:57 -05:00
|
|
|
android:launchMode="singleTop" />
|
2018-05-07 09:05:57 -05:00
|
|
|
<activity
|
|
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
|
2018-06-14 04:40:46 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.DarkActionBar" />
|
2018-05-07 09:05:57 -05:00
|
|
|
<activity
|
|
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
|
2018-06-14 04:40:46 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.DarkActionBar" />
|
2017-09-10 05:50:28 -05:00
|
|
|
|
|
|
|
<service
|
2018-04-24 14:27:45 -05:00
|
|
|
android:name=".services.jobs.SyncJob"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2018-04-24 14:27:45 -05:00
|
|
|
<service
|
|
|
|
android:name=".services.widgets.TimetableWidgetServices"
|
|
|
|
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
|
|
|
|
|
|
|
<receiver android:name=".ui.widgets.TimetableWidgetProvider">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget_provider" />
|
|
|
|
</receiver>
|
2017-12-27 14:49:09 -06:00
|
|
|
|
2018-01-11 14:57:41 -06:00
|
|
|
<meta-data
|
|
|
|
android:name="io.fabric.ApiKey"
|
|
|
|
android:value="${fabricApiKey}" />
|
2017-03-09 14:29:23 -06:00
|
|
|
</application>
|
|
|
|
|
2017-10-27 10:48:17 -05:00
|
|
|
</manifest>
|