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

67 lines
2.5 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"
package="io.github.wulkanowy"
2018-03-04 09:53:53 -06:00
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-03-04 09:53:53 -06:00
android:allowBackup="true"
android:fullBackupContent="@xml/backup_rules"
2017-03-09 14:29:23 -06:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/WulkanowyTheme">
<activity
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
android:name=".ui.login.LoginActivity"
2017-07-22 10:19:10 -05:00
android:configChanges="orientation|screenSize"
android:label="@string/title_activity_login"
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"
android:label="@string/activity_dashboard_text" />
<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>
</manifest>