File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,21 @@ jobs:
184184 uses : android-actions/setup-android@v3
185185 with :
186186 packages : tools platform-tools ndk;${{ env.NDK_VERSION }}
187+ - name : Verify Android SDK setup
188+ run : |
189+ echo "ANDROID_HOME: $ANDROID_HOME"
190+ echo "ANDROID_SDK_ROOT: $ANDROID_SDK_ROOT"
191+ echo "PATH: $PATH"
192+ echo "Checking for legacy tools directory:"
193+ ls -la "$ANDROID_HOME/tools/bin/" 2>/dev/null || echo "Legacy tools directory not found"
194+ echo "Checking for cmdline-tools:"
195+ ls -la "$ANDROID_HOME/cmdline-tools/" 2>/dev/null || echo "cmdline-tools directory not found"
196+ echo "Checking which sdkmanager is in PATH:"
197+ which sdkmanager || echo "sdkmanager not found in PATH"
198+ echo "All sdkmanager instances found:"
199+ find "$ANDROID_HOME" -name sdkmanager -type f 2>/dev/null || echo "No sdkmanager found"
200+ echo "Java version:"
201+ java -version
187202 - run : rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim
188203 - run : npm ci
189204 - run : npm run bootstrap
You can’t perform that action at this time.
0 commit comments