Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ jobs:
- name: Install dependencies
run: flutter pub get

- name: Add Homebrew to PATH
run: echo "/opt/homebrew/bin" >> $GITHUB_PATH

# pod update
- name: Run pod update
working-directory: ./example/ios
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
- name: Install dependencies
run: flutter pub get

- name: Add Homebrew to PATH
run: echo "/opt/homebrew/bin" >> $GITHUB_PATH

- name: Run pod update
working-directory: ./example/ios
run: pod update
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
with:
distribution: "temurin"
java-version: "17"

- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand All @@ -54,6 +55,9 @@ jobs:
- name: Install dependencies
run: flutter pub get

- name: Add Homebrew to PATH
run: echo "/opt/homebrew/bin" >> $GITHUB_PATH

- name: Run pod update
working-directory: ./example/ios
run: pod update
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {

applicationId = "io.didomi.flutter.sample"
multiDexEnabled = true
ndkVersion = "27.0.12077973"
ndkVersion = "29.0.14206865"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down