feat: support 16k page size

This commit is contained in:
Kagura 2024-10-13 16:22:24 +08:00
parent a1676f4f96
commit 4270abeea2
4 changed files with 6 additions and 2 deletions

View file

@ -4,10 +4,10 @@
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
<DropdownSelection timestamp="2024-10-11T03:45:10.780689385Z">
<DropdownSelection timestamp="2024-10-13T08:08:20.168147544Z">
<Target type="DEFAULT_BOOT">
<handle>
<DeviceId pluginId="LocalEmulator" identifier="path=/home/kagura/.android/avd/Pixel_3_API_30.avd" />
<DeviceId pluginId="LocalEmulator" identifier="path=/home/kagura/.android/avd/Pixel_6_API_35.avd" />
</handle>
</Target>
</DropdownSelection>

View file

@ -0,0 +1,4 @@
fn main() {
println!("cargo:rustc-link-arg=-z");
println!("cargo:rustc-link-arg=max-page-size=16384");
}