Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 23 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,27 @@ jobs:
command: yarn test
name: Jest

# new_arch_ios_build:
# executor:
# name: rn/macos
# xcode_version: '14.0.0'
# steps:
# - checkout
# - run:
# command: yarn install --frozen-lockfile
# name: yarn install
# - run:
# command: cd example && yarn install --frozen-lockfile && cd -
# name: yarn install example
# - run:
# command: (cd example && RCT_NEW_ARCH_ENABLED=1 npx pod-install)
# name: pod install
# - run:
# command: yarn detox:ios:build:release
# name: build app with new arch
new_arch_ios_build_only:
executor:
name: rn/macos
xcode_version: '15.0.0'
steps:
- checkout
- run:
command: yarn install --frozen-lockfile
name: yarn install
- run:
command: (cd example && RCT_NEW_ARCH_ENABLED=1 npx pod-install)
name: pod install
- run:
command: yarn detox:ios:build:release
name: build app with new arch


e2e_release_ios:
executor:
name: rn/macos
xcode_version: '14.0.0'
xcode_version: '15.0.0'
steps:
- checkout
- run:
Expand All @@ -70,8 +67,11 @@ jobs:
- run:
command: yarn bundle:ios
name: bundle js
- rn/pod_install:
pod_install_directory: 'example/ios'
# - rn/pod_install:
# pod_install_directory: 'example/ios'
- run:
command: (cd example && npx pod-install)
name: pod install
- run:
command: yarn detox:ios:build:release
name: build app for e2e tests
Expand Down Expand Up @@ -192,11 +192,13 @@ workflows:
- e2e_release_ios
- e2e_release_android
- e2e_release_android_new_arch
- new_arch_ios_build_only
- publish:
requires:
- e2e_release_android
- e2e_release_android_new_arch
- e2e_release_ios
- new_arch_ios_build_only
filters:
branches:
only: master
31 changes: 24 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
### 🚧🚧 Looking for collaborators and financial backers 🚧🚧
# 🚧🚧 Looking for collaborators and financial backers 🚧🚧

See this [issue](https://github.com/react-native-datetimepicker/datetimepicker/issues/313).
Please support maintenance of the module with a monthly donation or help us with issues and pull requests.

### Financial backers
[Become a backer on OpenCollective](https://opencollective.com/react-native-datetimepicker) or [sponsor us on GitHub Sponsors](https://github.com/sponsors/react-native-datetimepicker).

Support us with a monthly donation to help us keep the module maintained. [Become a backer on OpenCollective](https://opencollective.com/react-native-datetimepicker) or [sponsor us on GitHub Sponsors](https://github.com/sponsors/react-native-datetimepicker).
See this [issue](https://github.com/react-native-datetimepicker/datetimepicker/issues/313) for context. Thank you!

<a href="https://opencollective.com/react-native-datetimepicker/donate" target="_blank">
<img src="https://opencollective.com/react-native-datetimepicker/backers.svg?width=890" width=890 />
</a>

# React Native DateTimePicker
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>

---

## React Native DateTimePicker

This repository was moved out of the react native community GH organization, in accordance to [this proposal](https://github.com/react-native-community/discussions-and-proposals/issues/176).
The module is still published on `npm` under the old namespace (as documented) but will be published under a new namespace at some point, with a major version bump.
Expand All @@ -20,7 +37,7 @@ The module is still published on `npm` under the old namespace (as documented) b
![MIT License][license-badge]
[![Lean Core Badge][lean-core-badge]][lean-core-issue]

React Native date & time picker component for iOS, Android and Windows.
React Native date & time picker component for iOS, Android and Windows (please note Windows is not actively maintained).

## Screenshots

Expand Down Expand Up @@ -94,7 +111,7 @@ React Native date & time picker component for iOS, Android and Windows.
## Requirements

- Only Android API level >=21 (Android 5), iOS >= 11 are supported.
- Tested with Xcode 14.0 and RN 0.71.4. Other configurations are very likely to work as well but have not been tested.
- Tested with Xcode 14.0 and RN 0.72.7. Other configurations are very likely to work as well but have not been tested.

The module supports the [new React Native architecture](https://reactnative.dev/docs/next/the-new-architecture/why) (Fabric rendering of iOS components, and turbomodules on Android). If you are using the new architecture, you will need to use React Native 0.71.4 or higher.

Expand Down
Loading