Something went wrong on our end
-
Peter Joseph De Jonckheere CESM2014 authoredPeter Joseph De Jonckheere CESM2014 authored
AndroidManifest.xml 2.28 KiB
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.notificationFramework.sedentary.frontEnd">
<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
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="com.notificationFramework.sedentary.frontEnd.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.notificationFramework.sedentary.frontEnd.Settings">
</activity>
<activity android:name="com.notificationFramework.sedentary.frontEnd.NotificationClicked">
</activity>
<activity android:name="com.notificationFramework.sedentary.frontEnd.AdvancedSettings">
</activity>
<service android:name="com.notificationFramework.notification.SedentaryNotification">
</service>
<service android:name="com.notificationFramework.stimulusStrategy.Accelerometer">
</service>
<service android:name="com.notificationFramework.stimulusStrategy.SigMotionDetect">
</service>
<service android:name="com.notificationFramework.stimulusStrategy.StepCounter">
</service>
<service android:name="com.notificationFramework.stimulusStrategy.Clock">
</service>
<receiver android:name="com.notificationFramework.stimulus.SedentaryStimulus">
</receiver>
<receiver android:name="com.notificationFramework.stimulus.BootLauncher">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED">
</action>
</intent-filter>
</receiver>
</application>
</manifest>