Skip to content

Commit

Permalink
use fileTree instead of files
Browse files Browse the repository at this point in the history
  • Loading branch information
jyyi1 committed Jan 17, 2024
1 parent c613747 commit 3ba4fed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ dependencies {
implementation 'com.google.firebase:firebase-crashlytics-ndk:18.2.6'
implementation 'com.google.firebase:firebase-config:21.0.1'

// Go backend
implementation files(goBackendAAR) {
// Go backend (use fileTree instead of files to prevent Android Studio sync errors)
implementation fileTree(goBuildDir) {
include '*.aar'
builtBy 'compileGoBackend'
}
}
Expand Down

0 comments on commit 3ba4fed

Please sign in to comment.