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-08-29 07:22:55 -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" />
|
2017-12-27 14:49:09 -06:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2017-04-04 13:37:12 -05:00
|
|
|
|
2017-09-10 05:50:28 -05:00
|
|
|
<uses-sdk tools:overrideLibrary="com.thoughtbot.expandablerecyclerview" />
|
2017-08-29 07:22:55 -05:00
|
|
|
|
2017-03-09 14:29:23 -06:00
|
|
|
<application
|
2017-12-11 12:45:28 -06:00
|
|
|
android:name=".ui.WulkanowyApp"
|
2017-09-10 05:50: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"
|
|
|
|
android:supportsRtl="true"
|
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"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:theme="@style/WulkanowyTheme.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
|
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"
|
2017-07-22 10:19:10 -05:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2017-04-29 08:27:38 -05:00
|
|
|
<activity
|
2017-12-11 12:45:28 -06:00
|
|
|
android:name=".ui.main.DashboardActivity"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/activity_dashboard_text" />
|
|
|
|
|
|
|
|
<service
|
2017-12-11 12:45:28 -06:00
|
|
|
android:name=".services.jobs.FullSyncJob$SyncService"
|
2017-09-10 05:50:28 -05:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-12-27 14:49:09 -06:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.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>
|
2017-03-09 14:29:23 -06:00
|
|
|
</application>
|
|
|
|
|
2017-10-27 10:48:17 -05:00
|
|
|
</manifest>
|