Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b839a7d1 authored by Paul Sliwowski's avatar Paul Sliwowski
Browse files

Move content provider classes to new package.

Change-Id: Ida7d2d238f7ce25a3b0ddb23bdb2fbd84e7b2e2a
parent 519fb1ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
                 android:requiredForAllUsers="true"
                 android:supportsRtl="true">

        <provider android:name="AlarmProvider"
        <provider android:name=".provider.ClockProvider"
                android:authorities="com.android.deskclock"
                android:exported="false" />

+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ import android.view.WindowManager;
import android.widget.TextView;
import android.widget.Toast;

import com.android.deskclock.provider.Alarm;
import com.android.deskclock.widget.multiwaveview.GlowPadView;

import java.util.Calendar;
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ import android.widget.Switch;
import android.widget.TextView;
import android.widget.ToggleButton;

import com.android.deskclock.provider.Alarm;
import com.android.deskclock.widget.ActionableToastBar;
import java.text.DateFormatSymbols;
import java.util.Calendar;
+2 −0
Original line number Diff line number Diff line
@@ -35,6 +35,8 @@ import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.text.format.DateUtils;

import com.android.deskclock.provider.Alarm;

/**
 * Manages alarms and vibe. Runs as a service so that it can continue to play
 * if another activity overrides the AlarmAlert dialog.
+2 −0
Original line number Diff line number Diff line
@@ -25,6 +25,8 @@ import android.content.Intent;
import android.os.Parcel;
import android.os.PowerManager.WakeLock;

import com.android.deskclock.provider.Alarm;

import java.util.Calendar;

/**
Loading