Skip to content

Commit 06a203a

Browse files
committed
android.yml: revert changes that culminated in the step "Rename d8 to dx (fixes java.lang.NumberFormatException: Not a number: 33x)"
This step did indeed fix the NumberFormatException; however, a new error surfaced on Ubuntu: com.android.builder.errors.EvalIssueException: Location specified by android.ndkPath (/tmp/android-ndk-r21e) did not contain a valid NDK and couldn't be used And in Windows, this error occurred: Could not resolve com.google.guava:guava:31.1-android.
1 parent 433fa58 commit 06a203a

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.github/workflows/android.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,6 @@ jobs:
131131
pip install -r scripts/build_scripts/python_requirements.txt
132132
python scripts/restore_secrets.py --passphrase "${{ secrets.TEST_SECRET }}"
133133
134-
- name: "Rename d8 to dx (fixes java.lang.NumberFormatException: Not a number: 33x)"
135-
shell: bash
136-
run: |
137-
for D8_FILE in `find "$ANDROID_HOME/build-tools" -type f -name 'd8*'`; do
138-
DX_FILE="$(echo "$D8_FILE" | sed 's/d8/dx/')"
139-
echo "cp $D8_FILE $DX_FILE"
140-
cp "$D8_FILE" "$DX_FILE"
141-
done
142-
143134
- name: Download C++ SDK
144135
shell: bash
145136
run: |

0 commit comments

Comments
 (0)