| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/channels/ |
| H A D | NotificationChannelGroupManagerModule.kt | 28 AsyncFunction("getNotificationChannelGroupAsync") { groupId: String -> in <lambda>() method 30 val group = groupManager.getNotificationChannelGroup(groupId) in <lambda>() 47 …AsyncFunction("setNotificationChannelGroupAsync") { groupId: String, groupOptions: ReadableArgumen… in <lambda>() method 50 groupId, in <lambda>() 60 AsyncFunction("deleteNotificationChannelGroupAsync") { groupId: String -> in <lambda>() method 62 groupManager.deleteNotificationChannelGroup(groupId) in <lambda>()
|
| /expo/packages/expo-notifications/build/ |
| H A D | NotificationChannelGroupManager.types.d.ts | 24 … getNotificationChannelGroupAsync?: (groupId: string) => Promise<NotificationChannelGroup | null>; 25 …setNotificationChannelGroupAsync?: (groupId: string, group: NotificationChannelGroupInput) => Prom… 26 deleteNotificationChannelGroupAsync?: (groupId: string) => Promise<void>;
|
| H A D | getNotificationChannelGroupAsync.android.js | 3 export default async function getNotificationChannelGroupAsync(groupId) { argument 7 return await NotificationChannelGroupManager.getNotificationChannelGroupAsync(groupId);
|
| H A D | deleteNotificationChannelGroupAsync.android.js | 3 export default async function deleteNotificationChannelAsync(groupId) { argument 7 return await NotificationChannelGroupManager.deleteNotificationChannelGroupAsync(groupId);
|
| H A D | setNotificationChannelGroupAsync.android.js | 3 export default async function setNotificationChannelGroupAsync(groupId, group) { argument 7 return await NotificationChannelGroupManager.setNotificationChannelGroupAsync(groupId, group);
|
| H A D | NotificationChannelGroupManager.types.js.map | 1 …groupId: string) => Promise<NotificationChannelGroup | null>;\n setNotificationChannelGroupAsync?…
|
| /expo/packages/expo-notifications/src/ |
| H A D | NotificationChannelGroupManager.types.ts | 28 getNotificationChannelGroupAsync?: (groupId: string) => Promise<NotificationChannelGroup | null>; 30 groupId: string, 33 deleteNotificationChannelGroupAsync?: (groupId: string) => Promise<void>;
|
| H A D | deleteNotificationChannelGroupAsync.android.ts | 5 export default async function deleteNotificationChannelAsync(groupId: string): Promise<void> { 10 return await NotificationChannelGroupManager.deleteNotificationChannelGroupAsync(groupId);
|
| H A D | getNotificationChannelGroupAsync.android.ts | 7 groupId: string 13 return await NotificationChannelGroupManager.getNotificationChannelGroupAsync(groupId);
|
| H A D | setNotificationChannelGroupAsync.android.ts | 10 groupId: string, 17 return await NotificationChannelGroupManager.setNotificationChannelGroupAsync(groupId, group);
|
| /expo/packages/expo-contacts/build/ |
| H A D | Contacts.d.ts | 404 groupId?: string; 460 groupId?: string; 470 groupId?: string; 509 groupId?: string; 641 export declare function addExistingGroupToContainerAsync(groupId: string, containerId: string): Pro… 664 export declare function updateGroupNameAsync(groupName: string, groupId: string): Promise<any>; 674 export declare function removeGroupAsync(groupId: string): Promise<any>; 688 export declare function addExistingContactToGroupAsync(contactId: string, groupId: string): Promise… 702 export declare function removeContactFromGroupAsync(contactId: string, groupId: string): Promise<an…
|
| H A D | Contacts.js | 218 export async function addExistingGroupToContainerAsync(groupId, containerId) { argument 222 return await ExpoContacts.addExistingGroupToContainerAsync(groupId, containerId); 255 export async function updateGroupNameAsync(groupName, groupId) { argument 259 return await ExpoContacts.updateGroupNameAsync(groupName, groupId); 271 export async function removeGroupAsync(groupId) { argument 275 return await ExpoContacts.removeGroupAsync(groupId); 291 export async function addExistingContactToGroupAsync(contactId, groupId) { argument 295 return await ExpoContacts.addExistingContactToGroupAsync(contactId, groupId); 311 export async function removeContactFromGroupAsync(contactId, groupId) { argument 315 return await ExpoContacts.removeContactFromGroupAsync(contactId, groupId);
|
| /expo/packages/expo-contacts/src/ |
| H A D | Contacts.ts | 425 groupId?: string; 482 groupId?: string; 493 groupId?: string; 534 groupId?: string; 799 groupId: string, 848 return await ExpoContacts.updateGroupNameAsync(groupName, groupId); 861 export async function removeGroupAsync(groupId: string): Promise<any> { 866 return await ExpoContacts.removeGroupAsync(groupId); 885 groupId: string 910 groupId: string [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/channels/ |
| H A D | NotificationChannelGroupManagerModule.java | 47 public void getNotificationChannelGroupAsync(String groupId, Promise promise) { in getNotificationChannelGroupAsync() argument 53 NotificationChannelGroup group = mGroupManager.getNotificationChannelGroup(groupId); in getNotificationChannelGroupAsync() 73 …public void setNotificationChannelGroupAsync(String groupId, ReadableArguments groupOptions, Promi… in setNotificationChannelGroupAsync() argument 79 …NotificationChannelGroup group = mGroupManager.createNotificationChannelGroup(groupId, getNameFrom… in setNotificationChannelGroupAsync() 84 public void deleteNotificationChannelGroupAsync(String groupId, Promise promise) { in deleteNotificationChannelGroupAsync() argument 90 mGroupManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroupAsync()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/channels/ |
| H A D | NotificationChannelGroupManagerModule.java | 47 public void getNotificationChannelGroupAsync(String groupId, Promise promise) { in getNotificationChannelGroupAsync() argument 53 NotificationChannelGroup group = mGroupManager.getNotificationChannelGroup(groupId); in getNotificationChannelGroupAsync() 73 …public void setNotificationChannelGroupAsync(String groupId, ReadableArguments groupOptions, Promi… in setNotificationChannelGroupAsync() argument 79 …NotificationChannelGroup group = mGroupManager.createNotificationChannelGroup(groupId, getNameFrom… in setNotificationChannelGroupAsync() 84 public void deleteNotificationChannelGroupAsync(String groupId, Promise promise) { in deleteNotificationChannelGroupAsync() argument 90 mGroupManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroupAsync()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/channels/ |
| H A D | NotificationChannelGroupManagerModule.java | 47 public void getNotificationChannelGroupAsync(String groupId, Promise promise) { in getNotificationChannelGroupAsync() argument 53 NotificationChannelGroup group = mGroupManager.getNotificationChannelGroup(groupId); in getNotificationChannelGroupAsync() 73 …public void setNotificationChannelGroupAsync(String groupId, ReadableArguments groupOptions, Promi… in setNotificationChannelGroupAsync() argument 79 …NotificationChannelGroup group = mGroupManager.createNotificationChannelGroup(groupId, getNameFrom… in setNotificationChannelGroupAsync() 84 public void deleteNotificationChannelGroupAsync(String groupId, Promise promise) { in deleteNotificationChannelGroupAsync() argument 90 mGroupManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroupAsync()
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/channels/managers/ |
| H A D | AndroidXNotificationsChannelGroupManager.java | 41 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 42 NotificationChannelGroup group = new NotificationChannelGroup(groupId, name); in createNotificationChannelGroup() 50 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 51 mNotificationManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/channels/managers/ |
| H A D | AndroidXNotificationsChannelGroupManager.java | 41 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 42 NotificationChannelGroup group = new NotificationChannelGroup(groupId, name); in createNotificationChannelGroup() 50 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 51 mNotificationManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/notifications/channels/ |
| H A D | ScopedNotificationsGroupManager.java | 57 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 58 …ChannelGroup(ScopedNotificationsIdUtils.getScopedGroupId(mExperienceKey, groupId), name, groupOpti… in createNotificationChannelGroup() 63 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 64 NotificationChannelGroup groupToRemove = getNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/channels/managers/ |
| H A D | AndroidXNotificationsChannelGroupManager.java | 41 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 42 NotificationChannelGroup group = new NotificationChannelGroup(groupId, name); in createNotificationChannelGroup() 50 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 51 mNotificationManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/notifications/channels/ |
| H A D | ScopedNotificationsGroupManager.java | 57 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 58 …ChannelGroup(ScopedNotificationsIdUtils.getScopedGroupId(mExperienceKey, groupId), name, groupOpti… in createNotificationChannelGroup() 63 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 64 NotificationChannelGroup groupToRemove = getNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/notifications/channels/ |
| H A D | ScopedNotificationsGroupManager.java | 57 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 58 …ChannelGroup(ScopedNotificationsIdUtils.getScopedGroupId(mExperienceKey, groupId), name, groupOpti… in createNotificationChannelGroup() 63 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 64 NotificationChannelGroup groupToRemove = getNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/channels/managers/ |
| H A D | AndroidXNotificationsChannelGroupManager.java | 41 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 42 NotificationChannelGroup group = new NotificationChannelGroup(groupId, name); in createNotificationChannelGroup() 50 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 51 mNotificationManager.deleteNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/notifications/channels/ |
| H A D | ScopedNotificationsGroupManager.java | 57 …public NotificationChannelGroup createNotificationChannelGroup(@NonNull String groupId, @NonNull C… in createNotificationChannelGroup() argument 58 …ChannelGroup(ScopedNotificationsIdUtils.getScopedGroupId(mExperienceKey, groupId), name, groupOpti… in createNotificationChannelGroup() 63 public void deleteNotificationChannelGroup(@NonNull String groupId) { in deleteNotificationChannelGroup() argument 64 NotificationChannelGroup groupToRemove = getNotificationChannelGroup(groupId); in deleteNotificationChannelGroup()
|
| /expo/apps/native-component-list/src/screens/Contacts/ |
| H A D | ContactUtils.ts | 113 const groupId = await ensureGroupAsync(groupName); constant 115 const { data: contacts } = await Contacts.getContactsAsync({ groupId }); 117 contacts.map((contact) => Contacts.removeContactFromGroupAsync(contact.id!, groupId!)) 125 const groupId = await ensureGroupAsync('Expo Contacts'); constant 128 await Contacts.addExistingContactToGroupAsync(contact.id!, groupId!);
|