Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Nov 16, 2024
1 parent f6df005 commit 5a4b42b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,21 @@ jobs:
- name: set decoded file location as environment
run: echo "KEYSTORE_FILE=${{ steps.decode_keystore_file.outputs.filePath }}" >> $GITHUB_ENV

- name: assemble android gms debug artifact
run: ./gradlew androidApp:assembleGmsDebug
# - name: assemble android gms debug artifact
# run: ./gradlew androidApp:assembleGmsDebug

- name: assemble android hms debug artifact
run: ./gradlew androidApp:assembleHmsDebug
# - name: assemble android hms debug artifact
# run: ./gradlew androidApp:assembleHmsDebug

- name: assemble android foss debug artifact
run: ./gradlew androidApp:assembleFossDebug
# - name: assemble android foss debug artifact
# run: ./gradlew androidApp:assembleFossDebug

- name: assemble android debug artifacts
run: |
./gradlew \
androidApp:assembleGmsDebug \
androidApp:assembleHmsDebug \
androidApp:assembleFossDebug
# - name: assemble gms release artifact
# run: ./gradlew androidApp:assembleGmsRelease
Expand Down Expand Up @@ -129,7 +136,7 @@ jobs:
run: |
echo "GMS_DEBUG_APK_PATH=$(find androidApp/build/outputs/apk/gms/debug -name '*.apk' -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -d' ' -f2)" >> $GITHUB_ENV
echo "HMS_DEBUG_APK_PATH=$(find androidApp/build/outputs/apk/hms/debug -name '*.apk' -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -d' ' -f2)" >> $GITHUB_ENV
echo "FOSS_DEBUG_APK_PATH=$(find androidApp/build/outputs/apk/hms/debug -name '*.apk' -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -d' ' -f2)" >> $GITHUB_ENV
echo "FOSS_DEBUG_APK_PATH=$(find androidApp/build/outputs/apk/foss/debug -name '*.apk' -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -d' ' -f2)" >> $GITHUB_ENV
- name: send android telegram message gms debug
env:
Expand Down
7 changes: 6 additions & 1 deletion androidApp/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,9 @@
# @Serializable and @Polymorphic are used at runtime for polymorphic serialization.
-keepattributes RuntimeVisibleAnnotations,AnnotationDefault

-dontwarn org.slf4j.impl.StaticLoggerBinder
-dontwarn org.slf4j.impl.StaticLoggerBinder

-keep class io.ktor.utils.io.jvm.nio.** { *; }
-keep class io.ktor.utils.io.** { *; }

-keep class coil3.network.ktor.internal.UtilsKt { *; }

0 comments on commit 5a4b42b

Please sign in to comment.