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

52 lines
2.0 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"
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" />
2017-04-04 13:37:12 -05:00
2017-09-10 05:50:28 -05:00
<uses-sdk tools:overrideLibrary="com.thoughtbot.expandablerecyclerview" />
2017-03-09 14:29:23 -06:00
<application
android:name=".activity.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"
android:theme="@style/WulkanowyTheme">
<activity
android:name=".activity.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
android:name=".activity.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
android:name=".activity.dashboard.DashboardActivity"
2017-09-10 05:50:28 -05:00
android:configChanges="orientation|screenSize"
android:label="@string/activity_dashboard_text" />
<service
android:name=".services.jobs.GradeJob$GradeService"
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-03-09 14:29:23 -06:00
</application>
</manifest>