Skip to content

Commit

Permalink
update maps version
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Jul 3, 2024
2 parents 96c649b + d51804d commit 892e7a0
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'

- name: Cache Node.js modules
id: node-cache
Expand Down Expand Up @@ -56,8 +56,8 @@ jobs:
name: Install Titanium CLI

# TODO: Cache sdk install
- run: ti sdk install 11.0.0.GA --force
name: Install SDK 11.0.0.GA
- run: ti sdk install 12.3.1.GA
name: Install Titanium SDK

- name: Install ccache
run: brew install ccache
Expand All @@ -80,7 +80,7 @@ jobs:
with:
api-level: 29
target: playstore
script: npm run test:android -- --sdkVersion 11.0.0.GA
script: npm run test:android -- --sdkVersion 12.3.1.GA
disable-animations: false # defaulting to true, the commands sent to emulator to do this sometimes run too quickly after boot and cause "adb: device offline" failures

- name: Show summary of ccache configuration and statistics counters
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'

- run: npm ci
name: Install dependencies
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'

- name: Cache Node.js modules
id: node-cache
Expand All @@ -44,11 +44,11 @@ jobs:

# TODO cache SDK install

- run: ti sdk install 11.0.0.GA --force
name: Install SDK 11.0.0.GA
- run: ti sdk install 12.3.1.GA
name: Install Titanium SDK

- run: sed -i .bak 's/TITANIUM_SDK_VERSION = .*/TITANIUM_SDK_VERSION = 11.0.0.GA/' ios/titanium.xcconfig
name: Set to Build with 11.0.0.GA SDK
- run: sed -i .bak 's/TITANIUM_SDK_VERSION = .*/TITANIUM_SDK_VERSION = 12.3.1.GA/' ios/titanium.xcconfig
name: Set to Build with 12.3.1.GA SDK

# - run: npm run test:ios -- --sdkVersion 11.0.0.GA
# name: Build and Test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'

- name: Cache Node.js modules
id: node-cache
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

dependencies {
// https://developers.google.com/android/guides/releases
implementation 'com.google.android.gms:play-services-maps:18.2.0'
implementation 'com.google.android.gms:play-services-maps:19.0.0'

// https://github.com/googlemaps/android-maps-utils/releases
implementation 'com.google.maps.android:android-maps-utils:3.8.2'
Expand Down

0 comments on commit 892e7a0

Please sign in to comment.