<?xml version="1.0" encoding="utf-8"?>
<!---/**************************************************************************
* @file    AndroidManifest.xml
*
* Copyright (c) 2012, 2014, 2018-2019 Qualcomm Technologies, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*
*****************************************************************************-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.qualcomm.timeservice">

   <uses-permission android:name="android.permission.WAKE_LOCK" />
   <application>
      <receiver android:name=".TimeServiceBroadcastReceiver"
         android:exported="false"
         android:directBootAware="true"
         android:label="TimeServiceBroadcastReceiver">
         <intent-filter>
            <action android:name="android.intent.action.TIME_SET" />
         </intent-filter>
      </receiver>
   </application>
</manifest>
