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"
|
2018-10-23 10:12:57 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
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" />
|
2018-11-03 09:21:29 -05:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
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"
|
2018-10-20 13:59:46 -05:00
|
|
|
android:supportsRtl="false"
|
2018-09-24 08:21:47 -05:00
|
|
|
android:theme="@style/WulkanowyTheme"
|
2018-10-23 10:12:57 -05:00
|
|
|
android:usesCleartextTraffic="true"
|
2020-07-19 06:30:29 -05:00
|
|
|
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
2017-04-03 15:37:17 -05:00
|
|
|
<activity
|
2018-10-23 10:12:57 -05:00
|
|
|
android:name=".ui.modules.splash.SplashActivity"
|
2018-10-03 14:28:23 -05:00
|
|
|
android:screenOrientation="portrait"
|
2020-04-02 15:43:03 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.SplashScreen"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
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
|
2018-10-24 09:31:08 -05:00
|
|
|
android:name=".ui.modules.login.LoginActivity"
|
2017-07-22 10:19:10 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
2018-08-25 17:18:31 -05:00
|
|
|
android:label="@string/login_title"
|
2019-04-18 05:18:58 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.NoActionBar"
|
2017-07-22 10:19:10 -05:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2017-04-29 08:27:38 -05:00
|
|
|
<activity
|
2018-10-24 09:31:08 -05:00
|
|
|
android:name=".ui.modules.main.MainActivity"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
2018-08-25 17:18:31 -05:00
|
|
|
android:label="@string/main_title"
|
2020-05-20 07:12:32 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2019-03-17 15:02:41 -05:00
|
|
|
<activity
|
|
|
|
android:name=".ui.modules.message.send.SendMessageActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/send_message_title"
|
2020-02-22 14:24:06 -06:00
|
|
|
android:theme="@style/WulkanowyTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-04-07 17:18:45 -05:00
|
|
|
<activity
|
|
|
|
android:name=".ui.modules.timetablewidget.TimetableWidgetConfigureActivity"
|
|
|
|
android:excludeFromRecents="true"
|
2019-04-30 10:28:09 -05:00
|
|
|
android:noHistory="true"
|
2019-04-29 07:33:33 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.WidgetAccountSwitcher">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.modules.luckynumberwidget.LuckyNumberWidgetConfigureActivity"
|
|
|
|
android:excludeFromRecents="true"
|
2019-04-30 10:28:09 -05:00
|
|
|
android:noHistory="true"
|
2019-04-29 07:33:33 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.WidgetAccountSwitcher">
|
2019-04-07 17:18:45 -05:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-12-27 14:49:09 -06:00
|
|
|
|
2018-11-02 11:38:20 -05:00
|
|
|
<service
|
|
|
|
android:name=".services.widgets.TimetableWidgetService"
|
|
|
|
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
|
|
|
|
|
|
|
<receiver
|
2019-04-07 17:18:45 -05:00
|
|
|
android:name=".ui.modules.timetablewidget.TimetableWidgetProvider"
|
2019-03-23 08:44:52 -05:00
|
|
|
android:exported="true"
|
2018-11-02 11:38:20 -05:00
|
|
|
android:label="@string/timetable_title">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/provider_widget_timetable" />
|
|
|
|
</receiver>
|
2019-04-29 07:33:33 -05:00
|
|
|
<receiver
|
|
|
|
android:name=".ui.modules.luckynumberwidget.LuckyNumberWidgetProvider"
|
|
|
|
android:label="@string/lucky_number_title">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/provider_widget_lucky_number" />
|
|
|
|
</receiver>
|
|
|
|
|
2020-05-20 08:11:01 -05:00
|
|
|
<receiver android:name=".services.alarm.TimetableNotificationReceiver" />
|
|
|
|
|
2019-03-09 03:13:36 -06:00
|
|
|
<provider
|
|
|
|
android:name="androidx.work.impl.WorkManagerInitializer"
|
|
|
|
android:authorities="${applicationId}.workmanager-init"
|
|
|
|
android:exported="false"
|
|
|
|
tools:node="remove" />
|
|
|
|
|
2020-02-22 14:24:06 -06:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
|
|
|
|
2020-05-01 12:00:42 -05:00
|
|
|
<!-- workaround for https://github.com/firebase/firebase-android-sdk/issues/473 enabled:false -->
|
|
|
|
<!-- https://firebase.googleblog.com/2017/03/take-control-of-your-firebase-init-on.html -->
|
|
|
|
<provider
|
|
|
|
android:name="com.google.firebase.provider.FirebaseInitProvider"
|
|
|
|
android:authorities="${applicationId}.firebaseinitprovider"
|
|
|
|
android:enabled="${firebase_enabled}"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2018-12-18 09:12:15 -06:00
|
|
|
<meta-data
|
2020-05-01 12:00:42 -05:00
|
|
|
android:name="firebase_analytics_collection_enabled"
|
|
|
|
android:value="${firebase_enabled}" />
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
|
|
android:value="${firebase_enabled}" />
|
|
|
|
|
2018-01-11 14:57:41 -06:00
|
|
|
<meta-data
|
2018-12-13 17:20:54 -06:00
|
|
|
android:name="firebase_crashlytics_collection_enabled"
|
2020-05-01 12:00:42 -05:00
|
|
|
android:value="${firebase_enabled}" />
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="firebase_messaging_auto_init_enabled"
|
|
|
|
android:value="${firebase_enabled}" />
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="firebase_inapp_messaging_auto_data_collection_enabled"
|
|
|
|
android:value="${firebase_enabled}" />
|
2020-04-02 15:43:03 -05:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
|
|
android:resource="@drawable/ic_stat_push" />
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_channel_id"
|
|
|
|
android:value="push_channel" />
|
2017-03-09 14:29:23 -06:00
|
|
|
</application>
|
2017-10-27 10:48:17 -05:00
|
|
|
</manifest>
|