Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit ea202e6

Browse files
committed
Merge branch 'master' into add-bluetooth-share
2 parents 04c51ac + bc8d7af commit ea202e6

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/build-testing.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
- name: Update pubspec.yaml for FLOSS variant 📝
4545
run: sed -i -e 's/^#f//' pubspec.yaml
4646

47+
- name: Update android/app/build.gradle for FLOSS variant 📝
48+
run: sed -i -e 's/^\/\/f //' android/app/build.gradle
49+
4750
- name: Install dependencies 📦
4851
run: flutter pub get
4952

.github/workflows/release-app.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,23 @@ jobs:
6161
mv app-arm64-v8a-release.apk locus-arm64-gms.apk &&
6262
mv app-armeabi-v7a-release.apk locus-armeabi-gms.apk &&
6363
mv app-x86_64-release.apk locus-x86-gms.apk
64-
64+
6565
- name: Upload APKs 🚀
6666
uses: softprops/action-gh-release@v1
6767
env:
6868
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
6969
with:
7070
files: 'build/app/outputs/flutter-apk/*.apk'
71-
71+
7272
- name: Clean Flutter
7373
run: flutter clean
7474

7575
- name: Update pubspec.yaml for FLOSS variant 📝
7676
run: sed -i -e 's/^#f//' pubspec.yaml
7777

78+
- name: Update android/app/build.gradle for FLOSS variant 📝
79+
run: sed -i -e 's/^\/\/f //' android/app/build.gradle
80+
7881
- name: Install dependencies 📦
7982
run: flutter pub get
8083

android/app/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ dependencies {
9191
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
9292
}
9393

94-
configurations.all {
95-
exclude group: 'com.google.android.gms'
96-
}
94+
// Remove this for FLOSS version
95+
//f configurations.all {
96+
//f exclude group: 'com.google.android.gms'
97+
//f }

0 commit comments

Comments
 (0)