conventionschedule-android/app/src/main/AndroidManifest.xml

217 lines
9.2 KiB
XML

<?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="com.adlerosn.brasilfurfest">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="http"
android:host="www.brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="http"
android:host="www.brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="http"
android:host="brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="http"
android:host="brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="www.brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="www.brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="brasilfurfest.com.br"
android:pathPrefix="/app" />
</intent-filter>
</activity>
<activity
android:name="com.journeyapps.barcodescanner.CaptureActivity"
android:screenOrientation="sensorPortrait"
tools:replace="screenOrientation" />
<activity
android:name=".SplashActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.Splash" />
<activity
android:name=".schedule.ScheduleActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.Schedule" />
<activity
android:name=".schedule.FavoritesActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.ScheduleFavorites" />
<activity
android:name=".schedule.EventActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.ScheduleFavorite" />
<activity
android:name=".legal.SoftwareLicensesActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="landscape" />
<activity
android:name=".developer.DeveloperActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait" />
<activity
android:name=".AssetImageViewerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.ImageViewer" />
<activity
android:name=".schedule.QRCodeViewerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.ImageViewer" />
<activity
android:name=".CountdownActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.ImageViewer" />
<receiver
android:name=".notification.BootUpReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.REBOOT" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name=".notification.NotificationJobService"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name=".notification.ScheduleUpdaterJobService"
android:permission="android.permission.BIND_JOB_SERVICE" />
<activity
android:name=".schedule.SearchFilterActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme" />
<activity
android:name=".updater.startup.UpdaterActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme.Updater" />
<service
android:name=".updater.startup.UpdaterService"
android:enabled="true"
android:exported="false" />
<service
android:name=".updater.silent.UpdaterBackgroundService"
android:enabled="true"
android:exported="false" />
<activity
android:name=".schedule.RoomPartyPreviewerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme" />
</application>
</manifest>