Skip to content

Commit

Permalink
Release version 1.1.27 (295)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenduythuc committed Jan 17, 2024
1 parent ff356a2 commit f9a0b69
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cron-update-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check for New App Version

on:
schedule:
- cron: '*/30 * * * *'

jobs:
check-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install jq
run: sudo apt-get install jq -y
- name: Get latest app version from API
run: |
curl -s "https://itunes.apple.com/br/lookup?bundleId=app.subwallet.mobile" | jq -r '.results[0].version' > latest_version
latest_version=$(cat latest_version)
echo "Latest version: $latest_version"
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.27 (295)


## 1.1.26 (292)
# bundle-av11-iv7
- Add banner in token detail (#1346)
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 293
versionName "1.1.26"
versionName "1.1.27"
missingDimensionStrategy 'react-native-camera', 'general'
}

Expand Down
4 changes: 2 additions & 2 deletions ios/SubWalletMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.26;
MARKETING_VERSION = 1.1.27;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down Expand Up @@ -578,7 +578,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.26;
MARKETING_VERSION = 1.1.27;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SubWalletMobile",
"version": "1.1.26",
"build": "293",
"version": "1.1.27",
"build": "295",
"bundleVersion": "a(v11)-i(v7)",
"bundleVersionStaging": "a(v11)-i(v16)",
"private": true,
Expand Down

0 comments on commit f9a0b69

Please sign in to comment.