Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update flutter may 2024 #75

Merged
merged 7 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
java_version: '11.0.14+9'
ruby_version: '2.7.2'
flutter_version: '3.19.6'
flutter_version: '3.22.0'

jobs:
android-QA:
Expand All @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: flutter build apk --split-per-abi --no-pub --verbose --release

- name: Upload APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: android-app
retention-days: 7
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
env:
java_version: '11.0.14+9'
ruby_version: '2.7.2'
flutter_version: '3.19.6'
flutter_version: '3.22.0'

jobs:
android-internal:
Expand All @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -122,10 +122,10 @@ jobs:
run: bundle exec fastlane android internal

- name: Create Github Release
uses: "marvinpinto/action-automatic-releases@latest"
uses: softprops/action-gh-release@v2
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.pubspec.outputs.data }}"
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: "${{ steps.pubspec.outputs.data }}"
draft: true
prerelease: true
files: build/app/outputs/flutter-apk/app-release.apk
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {

defaultConfig {
applicationId "com.dartz.amiibo_network"
minSdkVersion 19
minSdkVersion flutter.minSdkVersion
targetSdkVersion 34
multiDexEnabled true
versionCode flutterVersionCode.toInteger()
Expand Down
389 changes: 191 additions & 198 deletions lib/repository/theme_repository.dart

Large diffs are not rendered by default.

Loading
Loading