Same fix as Android: Box::new([0i16; 16384]) allocates 32KB on the stack before moving to heap. Use vec![].into_boxed_slice() for direct heap allocation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Same fix as Android: Box::new([0i16; 16384]) allocates 32KB on the stack before moving to heap. Use vec![].into_boxed_slice() for direct heap allocation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>