Skip to content

Commit d38480f

Browse files
committed
add verbose in ci
1 parent a54adf8 commit d38480f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
build_qa_apk:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v1
31+
- uses: actions/checkout@v4
3232
- uses: actions/setup-java@v1
3333
with:
3434
java-version: '17'
@@ -37,7 +37,7 @@ jobs:
3737
flutter-version: ${{ matrix.flutter }}
3838
- run: flutter pub get
3939
working-directory: example
40-
- run: flutter build apk --release -v
40+
- run: flutter build apk --release -v --gradle-arg=--warning-mode=summary
4141
working-directory: example
4242
- name: Archive FlagshipQA APK
4343
uses: actions/upload-artifact@v4

example/android/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
buildscript {
2+
dependencies {
3+
classpath 'com.android.tools.build:gradle:8.4.1' // ou 8.5.0-beta si besoin
4+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24"
5+
}
6+
}
7+
18

29
allprojects {
310
repositories {

0 commit comments

Comments
 (0)