Create a local notification for android

Hi, I’m creating an App for Android. I created a reservated area and inside it I added two drop-down, one for the frequency (weekly or monthly) and the other for the timing of the day. The app must send local notifications automatically based on the two characteristics. For example, if the frequency is weekly and the timing of the day is the morning, the App must send a notification automatically every week in the morning- Is there any asset that I can use, also for paying, or is there someone that can help me?

Thank You

You could use “DataTime.now” which grants you access to the system time and then you could create a variable that you could compare with! Have not used this much since I don’t have to so I suggest you google it further! :slight_smile:

using System; //This imports the system


public DataTime morningTime; //This will be used to compare to current time


if(DataTime.now >= morningTime) //If our time surpassed, then send notification!
{
Notification();
}

void Notification()
{
//Do Something
}