forked from phonegap/phonegap-app-developer
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade the devapp to the most recent version of everything
To be consistent with 2023 phone upgrades Related issue: e-mission/e-mission-docs#838 Related PR: e-mission/e-mission-phone#952 Since the rest of the app is not the same, I applied the changes by diffing the config.xml and package.json and the setup directory with the corresponding locations in the e-mission-phone repo Additional minor changes: + comment out the `configure_xml_and_json` step, since we don't have the cordovabuild versions in this release + change the package name to `edu.berkeley.eecs.emission.devapp` + bump up the versions Testing done: - devapp builds successfully - after making phone app changes, devapp displays phone app successfully
- Loading branch information
Showing
7 changed files
with
92 additions
and
63 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
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
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,9 +1,14 @@ | ||
export NVM_VERSION=0.39.0 | ||
export NODE_VERSION=14.18.1 | ||
export NPM_VERSION=6.14.15 | ||
export RUBY_VERSION=2.6.0 | ||
export COCOAPODS_VERSION=1.11.2 | ||
export GRADLE_VERSION=7.1.1 | ||
export NVM_VERSION=0.39.3 | ||
export NODE_VERSION=19.5.0 | ||
export NPM_VERSION=9.3.1 | ||
# make sure that this is a stable version from | ||
# so that https://github.com/postmodern/ruby-versions | ||
# ideally, this would be the same version as the CI | ||
# Looks like brew supports only major and minor, not patch version | ||
export RUBY_VERSION=3.0 | ||
export COCOAPODS_VERSION=1.11.3 | ||
export GRADLE_VERSION=7.6 | ||
export OSX_EXP_VERSION=12 | ||
|
||
export NVM_DIR="$HOME/.nvm" | ||
export RUBY_PATH=$HOME/.gem/ruby/$RUBY_VERSION/bin | ||
export RUBY_PATH=$HOME/.gem/ruby/$RUBY_VERSION.0/bin |
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