Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Kirki_333 · Oct 06, 2019 at 09:12 PM · androidmobile devicesnotificationpush notificationnotificationservices

Help with the new Mobile Notification System in Unity

Hello guys, I am trying to implement the notification system on the application I am building. To be more specific I want the notification to fire in a specific date and time I specify by creating a DateTime object first. Then, I want to schedule a new notification by updating the previous one but an error is showing 10-06 17:50:54.079: E/Unity(9839): AndroidJavaException: java.lang.NoSuchMethodError: no static method with name='checkIfPendingNotificationIsRegistered' signature='(I)Z' in class Ljava.lang.Object; 10-06 17:50:54.079: E/Unity(9839): java.lang.NoSuchMethodError: no static method with name='checkIfPendingNotificationIsRegistered' signature='(I)Z' in class Ljava.lang.Object; 10-06 17:50:54.079: E/Unity(9839): at com.unity3d.player.ReflectionHelper.getMethodID(Unknown Source) 10-06 17:50:54.079: E/Unity(9839): at com.unity3d.player.UnityPlayer.nativeRender(Native Method) 10-06 17:50:54.079: E/Unity(9839): at com.unity3d.player.UnityPlayer.c(Unknown Source) 10-06 17:50:54.079: E/Unity(9839): at com.unity3d.player.UnityPlayer$e$2.queueIdle(Unknown Source) 10-06 17:50:54.079: E/Unity(9839): at android.os.MessageQueue.next(MessageQueue.java:398) 10-06 17:50:54.079: E/Unity(9839): at android.os.Looper.loop(Looper.java:142) 10-06 17:50:54.079: E/Unity(9839): at com.unity3d.player.UnityPlayer$e.run(Unknown Source) 10-06 17:50:54.079: E/Unity(9839): at UnityEngine._AndroidJNIHelper.GetMethodID (System.IntPtr jclass, System.String methodName, System.String signature, System.Boolean isStatic) [0x00041] in :0 10-06 17:50:54.079: E/Unity(9839): at UnityEngine.AndroidJNIHelper.GetMethodID (System.IntPtr javaClass, System.String methodName, System.String si.

Here is my code:

 void Start() { 

  var today = DateTime.Now;

  DateTime today_evening = new DateTime(today.Year, today.Month, today.Day, 14, 0, 0, 
  DateTimeKind.Utc);

  setEvening_Channel("3"); 

  setEvening_Notification(today_evening, "3");
  }

   public void setEvening_Channel(string id_e)
   {
     var evening = new AndroidNotificationChannel()
     {
         Id = id_e,
         Name = "Morning channel",
         Importance = Importance.High,
         Description = "Generic notification",
     };

     AndroidNotificationCenter.RegisterNotificationChannel(evening);
 }

    public void setEvening_Notification(DateTime tomo_even, string id_e)
    {
     
     //schedule the notification
     var notification_evening = new AndroidNotification();
     notification_evening.Title = "Just a Reminder";
     notification_evening.Text = "Don't forget to add today's meal";
     notification_evening.FireTime = tomo_even;

     evening_identifier = AndroidNotificationCenter.SendNotification(notification_evening, id_e);

     }

    private void OnApplicationPause(bool pause)
    {

      if (AndroidNotificationCenter.CheckScheduledNotificationStatus(evening_identifier) == 
       NotificationStatus.Delivered)
      {
         Debug.Log("DELIVERED STATUS ON EVENING NOTIFICATION");
         var today = DateTime.Now;
         //tommorows datetime strings
        

         var tommorow_evening = new DateTime(today.Year, today.Month, today.Day, 18, 0, 0, 
         DateTimeKind.Local);
         PlayerPrefs.SetString("tomorrow_evening", tommorow_evening.ToString());

         //  setMorning_Channel("4");

         var notification_evening = new AndroidNotification();
         notification_evening.Title = "Just a Reminder buddy";
         notification_evening.Text = "Don't forget to add today's meal";
         notification_evening.FireTime = tommorow_evening;
         AndroidNotificationCenter.UpdateScheduledNotification(evening_identifier, notification_evening,"3");
         Debug.Log("EVENING NOTIFICATION WAS UPDATED");
         }
       } 


The error is showing when I run the UpdateScheduledNotification method.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
3

Answer by trungvt1690 · Oct 12, 2019 at 04:01 PM

Method UpdateScheduledNotification has a bug. I checked version 1.0.3 and 1.0.4p3. They still not fix this. So, you can use SendNotificationWithExplicitID instead UpdateScheduledNotification, they are the same on current version. And wait they fix on next version.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

246 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Remote Notifications - Triggered by user or not 2 Answers

Application crashes when notification received:android 0 Answers

Custom push notification sound in android build doesn't work 0 Answers

Location (Geographic boundary) Triggered Push Notifications in Android 0 Answers

Free Android local notification plugin 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges