We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d35567 commit a1c256dCopy full SHA for a1c256d
1 file changed
.github/workflows/release-android.yml
@@ -83,11 +83,17 @@ jobs:
83
id: version
84
run: echo "version=$(jq -r '.expo.version' mobile_app/app.json)" >> $GITHUB_OUTPUT
85
86
+ - name: Disable ART profile compilation
87
+ working-directory: mobile_app/android
88
+ run: |
89
+ echo "" >> app/build.gradle
90
+ echo "// CI: profman absent on ubuntu-latest — skip ART profile tasks" >> app/build.gradle
91
+ echo "tasks.configureEach { if (name.contains('ArtProfile')) enabled = false }" >> app/build.gradle
92
+
93
- name: Build release APK
94
run: |
95
chmod +x gradlew
96
./gradlew assembleRelease \
- -Pandroid.enableArtProfiles=false \
97
-PRELEASE_STORE_FILE=release.keystore \
98
-PRELEASE_STORE_PASSWORD="${{ secrets.KEYSTORE_PASSWORD }}" \
99
-PRELEASE_KEY_ALIAS="${{ secrets.KEY_ALIAS }}" \
0 commit comments