-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release
4.0.0
with latest Expo and HT SDKs (#11)
* Add SDK init params to AndroidManifest and Info.plist * Crash the build if publishableKey is not provided * Bump expo SDK version from 48 to 49 * Bump version from 3.0.0 to 4.0.0 * Format readme * Update changelog * Update license * Update readme * Remove unused motion description --------- Co-authored-by: pavel-kuznetsov-hypertrack <[email protected]>
- Loading branch information
1 parent
5c5d989
commit 34d8b45
Showing
11 changed files
with
7,233 additions
and
9,216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules | |
build | ||
.yarn | ||
.idea | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,48 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [4.0.0] - 2023-10-03 | ||
|
||
### Changed | ||
|
||
- Updated expo required version to 49 | ||
- Updated [React Native HyperTrack SDK](https://github.com/hypertrack/sdk-react-native) version to `11.0.2` | ||
- binds iOS `5.0.2` and Android `7.0.3` native SDKs | ||
|
||
## [3.0.0] - 2023-03-07 | ||
|
||
### Changed | ||
|
||
- Updated expo required version to 48 | ||
|
||
## [2.0.0] - 2023-03-03 | ||
|
||
### Changed | ||
|
||
- Updated expo required version to 47 | ||
|
||
### Removed | ||
|
||
- AppDelegate methods for push notifications (we don't need them anymore for HyperTrack iOS SDK 4.14.0+) | ||
|
||
## [1.2.0] - 2023-01-04 | ||
|
||
### Changed | ||
|
||
- Bumped the minimum deployment target to iOS 13, in lockstep with Expo | ||
|
||
## [1.1.0] - 2022-10-04 | ||
|
||
### Changed | ||
|
||
- Use ExpoAppDelegateSubscriber protocol to proxy AppDelegate methods ([#2](https://github.com/hypertrack/sdk-expo/pull/2)) | ||
|
||
## [1.0.0] - 2022-07-29 | ||
|
||
### Added | ||
|
||
- Initial release of the expo plugin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
build: | ||
yarn expo-module clean | ||
yarn expo-module build | ||
|
||
clean: | ||
npx yarn clean | ||
npx yarn cache clean --force | ||
rm -rf node_modules ~/Library/Developer/Xcode/DerivedData | ||
|
||
release: | ||
npm publish --dry-run | ||
@echo "THIS IS DRY RUN. Check if everything is ok and then run 'npm publish'. Checklist:" | ||
@echo "\t- check the release steps in CONTRIBUTING" | ||
|
||
setup: | ||
npx yarn | ||
npx expo install --yarn | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "hypertrack-sdk-expo", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"license": "MIT", | ||
"description": "Config plugin to auto configure hypertrack-sdk-react-native on prebuild", | ||
"homepage": "https://github.com/hypertrack/sdk-expo", | ||
|
@@ -31,15 +31,15 @@ | |
"repository": "https://github.com/hypertrack/sdk-expo", | ||
"author": "HyperTrack <[email protected]> (https://hypertrack.com)", | ||
"devDependencies": { | ||
"expo": "^48.0.0", | ||
"expo-module-scripts": "^3.0.0" | ||
"expo": "^49.0.0", | ||
"expo-module-scripts": "^3.1.0" | ||
}, | ||
"dependencies": { | ||
"@expo/config-plugins": "^5.0.0", | ||
"expo-modules-core": "^1.0.0" | ||
}, | ||
"peerDependencies": { | ||
"expo": "^48.0.0" | ||
"expo": "^49.0.0" | ||
}, | ||
"upstreamPackage": "hypertrack-sdk-react-native" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.