Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task/Issue URL: https://app.asana.com/0/488551667048375/1209000029029641/f ### Description Make sure the builds are 16KB compatible ### Steps to test this PR Script to be used during testing ```bash find . -type f -name "*.so" | while read -r file; do result=$(objdump -p "$file" | grep LOAD | awk '{ print $NF }' | head -1) echo "$file: $result" done ``` _Test_ - [x] in the main branch, `cd android` folder and run `./gradlew clean build` - [x] run the script above - [x] all `.so` files result in `2**12` alignment - [x] change to this branch and again `cd android` folder and run `./gradlew clean build` - [x] run the script above - [x] all `.so` files result in `2**14` alignment
- Loading branch information