File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 # Add these new steps to handle the read-only SDK issue
5454 - name : Find Android SDK path
5555 run : |
56- SDK_PATH=$(find /nix/store -name "android-sdk" -type d | head -1)/libexec/android-sdk
56+ SDK_PATH=$(find /nix/store -name "android-sdk" -type d | grep libexec | head -1)
5757 echo "ANDROID_SDK_PATH=$SDK_PATH" >> $GITHUB_ENV
5858
5959 - name : Copy Android SDK to writable location
@@ -126,7 +126,7 @@ jobs:
126126 # Add these new steps to handle the read-only SDK issue
127127 - name : Find Android SDK path
128128 run : |
129- SDK_PATH=$(find /nix/store -name "android-sdk" -type d | head -1)/libexec/android-sdk
129+ SDK_PATH=$(find /nix/store -name "android-sdk" -type d | grep libexec | head -1)
130130 echo "ANDROID_SDK_PATH=$SDK_PATH" >> $GITHUB_ENV
131131
132132 - name : Copy Android SDK to writable location
You can’t perform that action at this time.
0 commit comments