wulkanowy-mod/app/src/main/AndroidManifest.xml

70 lines
2.8 KiB
XML
Raw Normal View History

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"
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"
tools:ignore="GoogleAppIndexingWarning">
<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"
android:theme="@style/WulkanowyTheme.SplashScreen">
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=".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"
2017-07-22 10:19:10 -05:00
android:windowSoftInputMode="adjustResize" />
2017-04-29 08:27:38 -05:00
<activity
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"
2018-10-03 14:28:23 -05:00
android:theme="@style/WulkanowyTheme.NoActionBar" />
2017-12-27 14:49:09 -06:00
2018-11-01 13:27:02 -05:00
<service
android:name=".services.job.SyncWorker"
android:exported="false">
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
</intent-filter>
</service>
2018-11-02 11:38:20 -05:00
<service
android:name=".services.widgets.TimetableWidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
<receiver
android:name=".ui.widgets.timetable.TimetableWidgetProvider"
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>
2018-11-01 13:27:02 -05: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>
</manifest>