Fixed
Status Update
Comments
[Deleted User] <[Deleted User]> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 23f1ec688f947830ccb1b80ea05bcf918a49259c
Author: Daniel Santiago Rivera <danysantiago@google.com>
Date: Thu Aug 08 11:24:53 2024
Support linuxArm64 JNI in sqlite-bundled
Bug: 358045505
Test: Manual, validated natives/linux_arm64/libsqliteJni.so is in jar file.
Change-Id: I4ad58258e6379b621e25bde24d565db47e7186ea
M sqlite/sqlite-bundled/build.gradle
https://android-review.googlesource.com/3213736
Branch: androidx-main
commit 23f1ec688f947830ccb1b80ea05bcf918a49259c
Author: Daniel Santiago Rivera <danysantiago@google.com>
Date: Thu Aug 08 11:24:53 2024
Support linuxArm64 JNI in sqlite-bundled
Bug: 358045505
Test: Manual, validated natives/linux_arm64/libsqliteJni.so is in jar file.
Change-Id: I4ad58258e6379b621e25bde24d565db47e7186ea
M sqlite/sqlite-bundled/build.gradle
[Deleted User] <[Deleted User]> #3
It works perfectly! Thanks for the quick response!
nk...@google.com <nk...@google.com>
sl...@google.com <sl...@google.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.sqlite:sqlite-bundled:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-android:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-iosarm64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-iossimulatorarm64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-iosx64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-jvm:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-linuxarm64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-linuxx64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-macosarm64:2.5.0-alpha07
androidx.sqlite:sqlite-bundled-macosx64:2.5.0-alpha07
Description
Version used:0.5
What steps will reproduce the problem?
1. Have a test wtih @RequiresDevice in the suite
2. Create an emulator with x86_64 ABI
3. Run suite from step #1 on emulator from #2
How are you running your tests (via Android Studio, Gradle, adb, etc.)?
Android Studio, but I don't think it matters
Expected output: @RequiresDevice test is not executed
Actual output: @RequiresDevice test IS executed
TestRequestBuilder$RequiresDeviceFilter checks for "goldfish" value on Build.HARDWARE which is correct for ABI x86, but not for ABI x86_64 - value is "ranchu" there.