diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f14626c..aea7e24 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -227,8 +227,14 @@ jobs: if: ${{ steps.key-check.outputs.available == 'true' }} run: | cd "${{ env.build_dir }}" + flutter_vercode=$(grep -Po 'version:\s.+\+(\d+)|.|version:\s(.+)\+' pubspec.yaml | grep -Po '(?<=\+)\d+' | awk '{print $1}') submodules/flutter/bin/flutter build apk --release --no-tree-shake-icons - submodules/flutter/bin/flutter build apk --release --no-tree-shake-icons --split-per-abi + abiver=$(($flutter_vercode * 10 + 1)) + submodules/flutter/bin/flutter build apk --release --no-tree-shake-icons --split-per-abi --target-platform="android-arm" --build-number=$abiver + abiver=$(($flutter_vercode * 10 + 2)) + submodules/flutter/bin/flutter build apk --release --no-tree-shake-icons --split-per-abi --target-platform="android-arm64" --build-number=$abiver + abiver=$(($flutter_vercode * 10 + 3)) + submodules/flutter/bin/flutter build apk --release --no-tree-shake-icons --split-per-abi --target-platform="android-x64" --build-number=$abiver - name: Build executable (debug) if: ${{ steps.key-check.outputs.available != 'true' }} run: | diff --git a/metadata/en-US/changelogs/23.txt b/metadata/en-US/changelogs/23.txt new file mode 100644 index 0000000..1aa3fad --- /dev/null +++ b/metadata/en-US/changelogs/23.txt @@ -0,0 +1,2 @@ +- added ability to change conversion API url +- added ability to set conversion rate manually \ No newline at end of file diff --git a/metadata/ru-RU/changelogs/23.txt b/metadata/ru-RU/changelogs/23.txt new file mode 100644 index 0000000..62ed02b --- /dev/null +++ b/metadata/ru-RU/changelogs/23.txt @@ -0,0 +1,2 @@ +- добавлена возможность установить адрес API конвертации +- добавлена возможность установить курс конвертации \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index 60fe8fe..cfcd1cc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: veil_wallet description: Veil light wallet made with flutter publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.0.16+22 +version: 1.0.17+23 environment: sdk: '>=3.3.0 <4.0.0'