Home
last modified time | relevance | path

Searched refs:sendSMSAsync (Results 1 – 23 of 23) sorted by relevance

/expo/packages/expo-sms/src/__tests__/
H A DSMS-test.ts10 await SMS.sendSMSAsync('0123456789', 'test');
11 expect(ExpoSMS.sendSMSAsync).toHaveBeenLastCalledWith(['0123456789'], 'test', {});
13 await SMS.sendSMSAsync(['0123456789', '9876543210'], 'test');
14 expect(ExpoSMS.sendSMSAsync).toHaveBeenLastCalledWith(['0123456789', '9876543210'], 'test', {});
32 await SMS.sendSMSAsync('0123456789', 'test', { attachments: imageAttachment });
33 expect(ExpoSMS.sendSMSAsync).toHaveBeenLastCalledWith(['0123456789'], 'test', {
43 await SMS.sendSMSAsync('0123456789', 'test', { attachments: multipleAttachments });
44 expect(ExpoSMS.sendSMSAsync).toHaveBeenLastCalledWith(['0123456789'], 'test', {
/expo/packages/expo-sms/build/
H A DSMS.js52 export async function sendSMSAsync(addresses, message, options) { function
53 if (!ExpoSMS.sendSMSAsync) {
68 return ExpoSMS.sendSMSAsync(finalAddresses, message, finalOptions);
H A DExpoSMS.web.js9 async sendSMSAsync(addresses, message) {
H A DExpoSMS.web.d.ts5 sendSMSAsync(addresses: string[], message: string): Promise<SMSResponse>; constant
H A DSMS.d.ts37 export declare function sendSMSAsync(addresses: string | string[], message: string, options?: SMSOp… function
H A DSMS.js.map1sendSMSAsync(\n * ['0123456789', '9876543210'],\n * 'My sample HelloWorld message',\n * {\n …
H A DExpoSMS.web.js.map1 …vailableAsync(): Promise<boolean> {\n return false;\n },\n async sendSMSAsync(addresses: stri…
/expo/apps/test-suite/tests/
H A DSMSCommon.js64 await SMS.sendSMSAsync(numbers, 'test with image', {
74 await SMS.sendSMSAsync(numbers, 'test with two images', {
91 await SMS.sendSMSAsync(numbers, 'test with audio', {
103 await SMS.sendSMSAsync(null, 'test with null recipient, no attachments', null);
107 await SMS.sendSMSAsync(undefined, 'test with undefined recipient, no attachments', null);
H A DSMS.web.js11 const error = await expectMethodToThrowAsync(SMS.sendSMSAsync);
H A DSMS.js25 await SMS.sendSMSAsync(['0123456789', '9876543210'], 'test');
H A DSMS.ios.js27 await SMS.sendSMSAsync(['0123456789', '9876543210'], 'test');
/expo/packages/expo-sms/src/
H A DSMS.ts60 export async function sendSMSAsync( function
65 if (!ExpoSMS.sendSMSAsync) {
80 return ExpoSMS.sendSMSAsync(finalAddresses, message, finalOptions);
H A DExpoSMS.web.ts12 async sendSMSAsync(addresses: string[], message: string): Promise<SMSResponse> {
/expo/packages/expo-sms/ios/
H A DExpoSMSModule.swift24 try sendSMSAsync(addresses: addresses, message: message, options: options, promise: promise) in definition()
28 …private func sendSMSAsync(addresses: [String], message: String, options: SMSOptions, promise: Prom… in sendSMSAsync() function
/expo/ios/versioned/sdk49/ExpoSMS/
H A DExpoSMSModule.swift24 try sendSMSAsync(addresses: addresses, message: message, options: options, promise: promise) in definition()
28 …private func sendSMSAsync(addresses: [String], message: String, options: SMSOptions, promise: Prom… in sendSMSAsync() function
/expo/ios/versioned/sdk48/ExpoSMS/
H A DExpoSMSModule.swift24 try sendSMSAsync(addresses: addresses, message: message, options: options, promise: promise) in definition()
28 …private func sendSMSAsync(addresses: [String], message: String, options: SMSOptions, promise: Prom… in sendSMSAsync() function
/expo/packages/expo-sms/android/src/main/java/expo/modules/sms/
H A DSMSModule.kt35 sendSMSAsync(addresses, message, options, promise) in <lambda>()
48 …private fun sendSMSAsync(addresses: List<String>, message: String, options: SMSOptions, promise: P… in <lambda>() method in expo.modules.sms.SMSModule
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/sms/
H A DSMSModule.kt35 sendSMSAsync(addresses, message, options, promise) in <lambda>()
48 …private fun sendSMSAsync(addresses: List<String>, message: String, options: SMSOptions, promise: P… in <lambda>() method in abi48_0_0.expo.modules.sms.SMSModule
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/sms/
H A DSMSModule.kt35 sendSMSAsync(addresses, message, options, promise) in <lambda>()
48 …private fun sendSMSAsync(addresses: List<String>, message: String, options: SMSOptions, promise: P… in <lambda>() method
/expo/apps/native-component-list/src/screens/
H A DSMSScreen.tsx34 const { result } = await SMS.sendSMSAsync(this.state.phoneNumbers, this.state.message);
57 const { result } = await SMS.sendSMSAsync(address, this.state.message);
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/sms/
H A DSMSModule.kt48 fun sendSMSAsync( in sendSMSAsync() method
/expo/packages/expo-sms/
H A DCHANGELOG.md103 - Handle null/undefined recipients in sendSMSAsync ([#13673](https://github.com/expo/expo/pull/1367…
147 - Add `attachments` as an optional parameter to `sendSMSAsync`. It can be used to provide an attach…
/expo/ios/versioned/sdk47/EXSMS/EXSMS/
H A DABI47_0_0EXSMSModule.m43 ABI47_0_0EX_EXPORT_METHOD_AS(sendSMSAsync, category