We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177cc97 commit 4c6ad66Copy full SHA for 4c6ad66
com.unity.mobile.notifications/Editor/NotificationSettings.cs
@@ -99,6 +99,21 @@ public static string CustomActivityString
99
}
100
101
102
+ /// <summary>
103
+ /// A set of flags indicating whether to use exact scheduling and add supporting permissions.
104
+ /// </summary>
105
+ public static AndroidExactSchedulingOption ExactSchedulingOption
106
+ {
107
+ get
108
109
+ return GetSettingValue<AndroidExactSchedulingOption>(BuildTargetGroup.Android, EXACT_ALARM);
110
+ }
111
+ set
112
113
+ SetSettingValue<AndroidExactSchedulingOption>(BuildTargetGroup.Android, EXACT_ALARM, value);
114
115
116
+
117
/// <summary>
118
/// Add image to notification settings.
119
/// </summary>
0 commit comments