1
0
mirror of https://github.com/go-vikunja/app synced 2024-05-29 00:36:49 +00:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Denys Vitali
0e29b6620d
feat: add web support 2024-04-06 18:54:01 +02:00
Denys Vitali
1d538d6816
revert: use minSdk=21 2024-04-06 18:46:26 +02:00
Denys Vitali
5ab6a59b05
refactor: update dependencies 2024-04-06 18:44:35 +02:00
Denys Vitali
056b2d72c9
chore: format code with dart format (#71)
This PR formats all code with dart format and adds a step to the CI so that it will be checked on every push and PR.
2024-04-05 22:36:56 +02:00
2 changed files with 21 additions and 1 deletions

20
.github/workflows/flutter-format.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Flutter Check Format
on:
pull_request: {}
push: {}
jobs:
release:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: stable
- name: Check Dart Format
run: dart format --set-exit-if-changed .

View File

@ -41,7 +41,7 @@ android {
defaultConfig {
applicationId "io.vikunja.app"
minSdkVersion 33
minSdkVersion 21
targetSdkVersion 34
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode flutterVersionCode.toInteger()