| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/ |
| H A D | NotificationContent.java | 44 return new NotificationContent(in); 124 mTitle = in.readString(); in NotificationContent() 125 mText = in.readString(); in NotificationContent() 126 mSubtitle = in.readString(); in NotificationContent() 142 mAutoDismiss = in.readByte() == 1; in NotificationContent() 143 mCategoryId = in.readString(); in NotificationContent() 144 mSticky = in.readByte() == 1; in NotificationContent() 193 mTitle = (String) in.readObject(); in readObject() 194 mText = (String) in.readObject(); in readObject() 228 mColor = (Number) in.readObject(); in readObject() [all …]
|
| H A D | NotificationAction.java | 22 protected NotificationAction(Parcel in) { in NotificationAction() argument 23 mIdentifier = in.readString(); in NotificationAction() 24 mTitle = in.readString(); in NotificationAction() 25 mOpensAppToForeground = in.readByte() != 0; in NotificationAction() 42 public NotificationAction createFromParcel(Parcel in) { 43 return new NotificationAction(in);
|
| H A D | TextInputNotificationResponse.java | 22 public TextInputNotificationResponse createFromParcel(Parcel in) { 23 return new TextInputNotificationResponse(in); 32 protected TextInputNotificationResponse(Parcel in) { in TextInputNotificationResponse() argument 33 super(in); in TextInputNotificationResponse() 34 mUserText = in.readString(); in TextInputNotificationResponse()
|
| H A D | NotificationBehavior.java | 33 private NotificationBehavior(Parcel in) { in NotificationBehavior() argument 34 mShouldShowAlert = in.readByte() != 0; in NotificationBehavior() 35 mShouldPlaySound = in.readByte() != 0; in NotificationBehavior() 36 mShouldSetBadge = in.readByte() != 0; in NotificationBehavior() 37 mPriorityOverride = in.readString(); in NotificationBehavior() 55 public NotificationBehavior createFromParcel(Parcel in) { 56 return new NotificationBehavior(in);
|
| H A D | TextInputNotificationAction.java | 16 private TextInputNotificationAction(Parcel in) { in TextInputNotificationAction() argument 17 super(in); in TextInputNotificationAction() 18 mPlaceholder = in.readString(); in TextInputNotificationAction() 29 public TextInputNotificationAction createFromParcel(Parcel in) { 30 return new TextInputNotificationAction(in);
|
| H A D | NotificationRequest.java | 37 protected NotificationRequest(Parcel in) { in NotificationRequest() argument 38 mIdentifier = in.readString(); in NotificationRequest() 39 mContent = in.readParcelable(getClass().getClassLoader()); in NotificationRequest() 40 mTrigger = in.readParcelable(getClass().getClassLoader()); in NotificationRequest() 45 public NotificationRequest createFromParcel(Parcel in) { 46 return new NotificationRequest(in);
|
| /expo/ios/Exponent.xcodeproj/ |
| H A D | project.pbxproj | 2593 31AD9A342285B53100F19090 /* AIRMap.m in Sources */, 2640 B5D0D65F204F4BF500DDFC99 /* EXLog.m in Sources */, 2644 B526B5081E6A543500606CAB /* ExpoKit.m in Sources */, 2658 B5AC39A71E95A90B00540AA7 /* EXKernel.m in Sources */, 2661 B5FB74EF1FF6DADC001C764B /* EXTest.m in Sources */, 2679 B5FB74B51FF6DADC001C764B /* EXUtil.m in Sources */, 2816 F14217F4262CB68600BB97E6 /* AIRMap.m in Sources */, 2865 F1421848262CB68600BB97E6 /* EXLog.m in Sources */, 2869 F1421851262CB68600BB97E6 /* ExpoKit.m in Sources */, 2888 F1421869262CB68600BB97E6 /* EXTest.m in Sources */, [all …]
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/triggers/ |
| H A D | TimeIntervalTrigger.java | 30 private TimeIntervalTrigger(Parcel in) { in TimeIntervalTrigger() argument 31 super(in); in TimeIntervalTrigger() 32 mTriggerDate = new Date(in.readLong()); in TimeIntervalTrigger() 33 mTimeInterval = in.readLong(); in TimeIntervalTrigger() 34 mRepeats = in.readByte() == 1; in TimeIntervalTrigger() 78 public TimeIntervalTrigger createFromParcel(Parcel in) { 79 return new TimeIntervalTrigger(in);
|
| H A D | YearlyTrigger.java | 28 private YearlyTrigger(Parcel in) { in YearlyTrigger() argument 29 super(in); in YearlyTrigger() 30 mDay = in.readInt(); in YearlyTrigger() 31 mMonth = in.readInt(); in YearlyTrigger() 32 mHour = in.readInt(); in YearlyTrigger() 33 mMinute = in.readInt(); in YearlyTrigger() 85 public YearlyTrigger createFromParcel(Parcel in) { 86 return new YearlyTrigger(in);
|
| H A D | WeeklyTrigger.java | 26 private WeeklyTrigger(Parcel in) { in WeeklyTrigger() argument 27 super(in); in WeeklyTrigger() 28 mWeekday = in.readInt(); in WeeklyTrigger() 29 mHour = in.readInt(); in WeeklyTrigger() 30 mMinute = in.readInt(); in WeeklyTrigger() 76 public WeeklyTrigger createFromParcel(Parcel in) { 77 return new WeeklyTrigger(in);
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/triggers/ |
| H A D | TimeIntervalTrigger.java | 30 private TimeIntervalTrigger(Parcel in) { in TimeIntervalTrigger() argument 31 super(in); in TimeIntervalTrigger() 32 mTriggerDate = new Date(in.readLong()); in TimeIntervalTrigger() 33 mTimeInterval = in.readLong(); in TimeIntervalTrigger() 34 mRepeats = in.readByte() == 1; in TimeIntervalTrigger() 78 public TimeIntervalTrigger createFromParcel(Parcel in) { 79 return new TimeIntervalTrigger(in);
|
| H A D | YearlyTrigger.java | 28 private YearlyTrigger(Parcel in) { in YearlyTrigger() argument 29 super(in); in YearlyTrigger() 30 mDay = in.readInt(); in YearlyTrigger() 31 mMonth = in.readInt(); in YearlyTrigger() 32 mHour = in.readInt(); in YearlyTrigger() 33 mMinute = in.readInt(); in YearlyTrigger() 85 public YearlyTrigger createFromParcel(Parcel in) { 86 return new YearlyTrigger(in);
|
| H A D | WeeklyTrigger.java | 26 private WeeklyTrigger(Parcel in) { in WeeklyTrigger() argument 27 super(in); in WeeklyTrigger() 28 mWeekday = in.readInt(); in WeeklyTrigger() 29 mHour = in.readInt(); in WeeklyTrigger() 30 mMinute = in.readInt(); in WeeklyTrigger() 76 public WeeklyTrigger createFromParcel(Parcel in) { 77 return new WeeklyTrigger(in);
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/triggers/ |
| H A D | TimeIntervalTrigger.java | 30 private TimeIntervalTrigger(Parcel in) { in TimeIntervalTrigger() argument 31 super(in); in TimeIntervalTrigger() 32 mTriggerDate = new Date(in.readLong()); in TimeIntervalTrigger() 33 mTimeInterval = in.readLong(); in TimeIntervalTrigger() 34 mRepeats = in.readByte() == 1; in TimeIntervalTrigger() 78 public TimeIntervalTrigger createFromParcel(Parcel in) { 79 return new TimeIntervalTrigger(in);
|
| H A D | YearlyTrigger.java | 28 private YearlyTrigger(Parcel in) { in YearlyTrigger() argument 29 super(in); in YearlyTrigger() 30 mDay = in.readInt(); in YearlyTrigger() 31 mMonth = in.readInt(); in YearlyTrigger() 32 mHour = in.readInt(); in YearlyTrigger() 33 mMinute = in.readInt(); in YearlyTrigger() 85 public YearlyTrigger createFromParcel(Parcel in) { 86 return new YearlyTrigger(in);
|
| H A D | WeeklyTrigger.java | 26 private WeeklyTrigger(Parcel in) { in WeeklyTrigger() argument 27 super(in); in WeeklyTrigger() 28 mWeekday = in.readInt(); in WeeklyTrigger() 29 mHour = in.readInt(); in WeeklyTrigger() 30 mMinute = in.readInt(); in WeeklyTrigger() 76 public WeeklyTrigger createFromParcel(Parcel in) { 77 return new WeeklyTrigger(in);
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/triggers/ |
| H A D | TimeIntervalTrigger.java | 30 private TimeIntervalTrigger(Parcel in) { in TimeIntervalTrigger() argument 31 super(in); in TimeIntervalTrigger() 32 mTriggerDate = new Date(in.readLong()); in TimeIntervalTrigger() 33 mTimeInterval = in.readLong(); in TimeIntervalTrigger() 34 mRepeats = in.readByte() == 1; in TimeIntervalTrigger() 78 public TimeIntervalTrigger createFromParcel(Parcel in) { 79 return new TimeIntervalTrigger(in);
|
| H A D | YearlyTrigger.java | 28 private YearlyTrigger(Parcel in) { in YearlyTrigger() argument 29 super(in); in YearlyTrigger() 30 mDay = in.readInt(); in YearlyTrigger() 31 mMonth = in.readInt(); in YearlyTrigger() 32 mHour = in.readInt(); in YearlyTrigger() 33 mMinute = in.readInt(); in YearlyTrigger() 85 public YearlyTrigger createFromParcel(Parcel in) { 86 return new YearlyTrigger(in);
|
| H A D | WeeklyTrigger.java | 26 private WeeklyTrigger(Parcel in) { in WeeklyTrigger() argument 27 super(in); in WeeklyTrigger() 28 mWeekday = in.readInt(); in WeeklyTrigger() 29 mHour = in.readInt(); in WeeklyTrigger() 30 mMinute = in.readInt(); in WeeklyTrigger() 76 public WeeklyTrigger createFromParcel(Parcel in) { 77 return new WeeklyTrigger(in);
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | in-app-purchases.mdx | 3 description: A library for accepting in-app purchases. 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-46/packages/expo-in-app-purchases' 5 packageName: 'expo-in-app-purchases' 14 **`expo-in-app-purchases`** provides an API to accept payments for in-app products. Internally this… 20 <APIInstallSection hideBareInstructions cmd={['$ npm install expo-in-app-purchases']} /> 22 This module is currently only available in the [bare](/archive/managed-vs-bare/#bare-workflow) work… 48 …ad a release APK in the [Google Play Console](https://developer.android.com/distribute/console/). … 50 …in Google Play. Note that it may take a few hours for the app to be available for testers. Ensure … 52 > Note that in-app purchases require physical devices to work on both platforms and therefore **can… 57 import * as InAppPurchases from 'expo-in-app-purchases'; [all …]
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | in-app-purchases.mdx | 3 description: A library for accepting in-app purchases. 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-in-app-purchases' 5 packageName: 'expo-in-app-purchases' 14 **`expo-in-app-purchases`** provides an API to accept payments for in-app products. Internally this… 20 This module is **not** available in the [Expo Go app](https://expo.dev/expo-go) due to app store re… 32 …in [App Store Connect](https://appstoreconnect.apple.com/) and configure your in-app purchases, in… 40 …ad a release APK in the [Google Play Console](https://developer.android.com/distribute/console/). … 42 …in Google Play. Note that it may take a few hours for the app to be available for testers. Ensure … 44 > Note that in-app purchases require physical devices to work on both platforms and therefore **can… 49 import * as InAppPurchases from 'expo-in-app-purchases'; [all …]
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | in-app-purchases.mdx | 3 description: A library for accepting in-app purchases. 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-in-app-purchases' 5 packageName: 'expo-in-app-purchases' 14 **`expo-in-app-purchases`** provides an API to accept payments for in-app products. Internally this… 20 This module is **not** available in the [Expo Go app](https://expo.dev/expo-go) due to app store re… 32 …in [App Store Connect](https://appstoreconnect.apple.com/) and configure your in-app purchases, in… 40 …ad a release APK in the [Google Play Console](https://developer.android.com/distribute/console/). … 42 …in Google Play. Note that it may take a few hours for the app to be available for testers. Ensure … 44 > Note that in-app purchases require physical devices to work on both platforms and therefore **can… 49 import * as InAppPurchases from 'expo-in-app-purchases'; [all …]
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | in-app-purchases.mdx | 3 description: A library for accepting in-app purchases. 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-in-app-purchases' 5 packageName: 'expo-in-app-purchases' 12 …intained and will be removed in a future SDK release. Development was paused in June 2022 and the … 16 **`expo-in-app-purchases`** provides an API to accept payments for in-app products. Internally this… 22 This module is **not** available in the [Expo Go app](https://expo.dev/expo-go) due to app store re… 42 …ad a release APK in the [Google Play Console](https://developer.android.com/distribute/console/). … 44 …in Google Play. Note that it may take a few hours for the app to be available for testers. Ensure … 46 > Note that in-app purchases require physical devices to work on both platforms and therefore **can… 51 import * as InAppPurchases from 'expo-in-app-purchases'; [all …]
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | in-app-purchases.mdx | 3 description: A library for accepting in-app purchases. 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-in-app-purchases' 5 packageName: 'expo-in-app-purchases' 12 …intained and will be removed in a future SDK release. Development was paused in June 2022 and the … 16 **`expo-in-app-purchases`** provides an API to accept payments for in-app products. Internally this… 22 This module is **not** available in the [Expo Go app](https://expo.dev/expo-go) due to app store re… 42 …ad a release APK in the [Google Play Console](https://developer.android.com/distribute/console/). … 44 …in Google Play. Note that it may take a few hours for the app to be available for testers. Ensure … 46 > Note that in-app purchases require physical devices to work on both platforms and therefore **can… 51 import * as InAppPurchases from 'expo-in-app-purchases'; [all …]
|
| /expo/packages/expo-in-app-purchases/ |
| H A D | README.md | 1 # expo-in-app-purchases 3 `expo-in-app-purchases` allows you to accept payments for in-app products. 7 …h](https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/in-app-purchases.mdx) 8 - [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/in-app-pu… 17 npx expo install expo-in-app-purchases 30 Contributions are very welcome! Please refer to guidelines described in the [contributing guide](ht…
|