Skip to content

Commit

Permalink
update sdk verison
Browse files Browse the repository at this point in the history
  • Loading branch information
NeXTormer committed Feb 8, 2024
1 parent a18a297 commit 315fa9d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_for_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
build_aab:
runs-on: ubuntu-latest

# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.8'
Expand Down
10 changes: 5 additions & 5 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ android {

defaultConfig {
applicationId "io.hawkford.fredericapp"
minSdkVersion 19
minSdkVersion 28
multiDexEnabled true
targetSdkVersion 33
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
Expand All @@ -68,9 +68,9 @@ android {
release {
signingConfig signingConfigs.release
// Enable this to add debug symbols to the application binary
// ndk {
// debugSymbolLevel 'SYMBOL_TABLE'
// }
ndk {
debugSymbolLevel 'SYMBOL_TABLE'
}
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions test/general/frederic_workout_activities_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ void main() {
expect(list.isNotEmpty, true);
var activity = list.first;

expect(activity.activity.id, (day + 1).toString());
expect(activity.activity.id, day.toString());
}

for (int week = 0; week < 100; week++) {
for (int week = 0; week < 40; week++) {
for (int day = 0; day < 7; day++) {
checkDay(day, week);
}
Expand All @@ -110,7 +110,7 @@ void main() {
} else {
expect(list.isNotEmpty, true);
var activity = list.first;
expect(activity.activity.id, (day + 1).toString());
expect(activity.activity.id, day.toString());
}
}

Expand Down

0 comments on commit 315fa9d

Please sign in to comment.