Skip to content

Commit

Permalink
Enable legacy packaging to preserve syncthing libs (fixes #1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
imsodin committed Jul 17, 2023
1 parent d003897 commit 064af46
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ android {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

// Otherwise libsyncthing.so doesn't appear where it should in installs
// based on app bundles, and thus nothing works.
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}
}

play {
Expand Down

0 comments on commit 064af46

Please sign in to comment.