| /expo/packages/expo-sms/src/__tests__/ |
| H A D | SMS-test.ts | 10 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 D | SMS.js | 52 export async function sendSMSAsync(addresses, message, options) { function 53 if (!ExpoSMS.sendSMSAsync) { 68 return ExpoSMS.sendSMSAsync(finalAddresses, message, finalOptions);
|
| H A D | ExpoSMS.web.js | 9 async sendSMSAsync(addresses, message) {
|
| H A D | ExpoSMS.web.d.ts | 5 sendSMSAsync(addresses: string[], message: string): Promise<SMSResponse>; constant
|
| H A D | SMS.d.ts | 37 export declare function sendSMSAsync(addresses: string | string[], message: string, options?: SMSOp… function
|
| H A D | SMS.js.map | 1 …sendSMSAsync(\n * ['0123456789', '9876543210'],\n * 'My sample HelloWorld message',\n * {\n …
|
| H A D | ExpoSMS.web.js.map | 1 …vailableAsync(): Promise<boolean> {\n return false;\n },\n async sendSMSAsync(addresses: stri…
|
| /expo/apps/test-suite/tests/ |
| H A D | SMSCommon.js | 64 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 D | SMS.web.js | 11 const error = await expectMethodToThrowAsync(SMS.sendSMSAsync);
|
| H A D | SMS.js | 25 await SMS.sendSMSAsync(['0123456789', '9876543210'], 'test');
|
| H A D | SMS.ios.js | 27 await SMS.sendSMSAsync(['0123456789', '9876543210'], 'test');
|
| /expo/packages/expo-sms/src/ |
| H A D | SMS.ts | 60 export async function sendSMSAsync( function 65 if (!ExpoSMS.sendSMSAsync) { 80 return ExpoSMS.sendSMSAsync(finalAddresses, message, finalOptions);
|
| H A D | ExpoSMS.web.ts | 12 async sendSMSAsync(addresses: string[], message: string): Promise<SMSResponse> {
|
| /expo/packages/expo-sms/ios/ |
| H A D | ExpoSMSModule.swift | 24 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 D | ExpoSMSModule.swift | 24 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 D | ExpoSMSModule.swift | 24 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 D | SMSModule.kt | 35 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 D | SMSModule.kt | 35 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 D | SMSModule.kt | 35 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 D | SMSScreen.tsx | 34 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 D | SMSModule.kt | 48 fun sendSMSAsync( in sendSMSAsync() method
|
| /expo/packages/expo-sms/ |
| H A D | CHANGELOG.md | 103 - 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 D | ABI47_0_0EXSMSModule.m | 43 ABI47_0_0EX_EXPORT_METHOD_AS(sendSMSAsync, category
|