commit | cd31a066db22cd69a92d50228579f390eaf23c7c | [log] [tgz] |
---|---|---|
author | Charisee <chiw@google.com> | Thu Mar 28 03:39:45 2024 +0000 |
committer | Charisee <chiw@google.com> | Fri Apr 05 18:35:07 2024 +0000 |
tree | 7c61488634494ba4abc29298e5bbc4c45007ebe9 | |
parent | da8eacceff6a21b4ddda23f7d38ec35b37c2c54e [diff] |
Update needed for Rust v1.77.0 error: non-binding let on a synchronization lock --> packages/modules/Virtualization/virtualizationmanager/src/crosvm.rs:418:14 | 418 | let (_, result) = self | ^ this lock is not assigned to a binding and is immediately dropped | = help: consider immediately dropping the value using `drop(..)` after the `let` statement = note: `#[deny(let_underscore_lock)]` on by default help: consider binding to an unused variable to avoid immediately dropping the value | 418 | let (_unused, result) = self | ~~~~~~~ error: aborting due to 1 previous error Bug: 330185853 Test: ./test_compiler.py --prebuilt-path dist/rust-dev.tar.xz --target aosp_cf_x86_64_phone --image Change-Id: Ib0116e7bb6999734ed208b72f0c3ed68411ba4bf
Android Virtualization Framework (AVF) provides secure and private execution environments for executing code. AVF is ideal for security-oriented use cases that require stronger isolation assurances over those offered by Android’s app sandbox.
Visit our public doc site to learn more about what AVF is, what it is for, and how it is structured. This repository contains source code for userspace components of AVF.
If you want a quick start, see the getting started guideline and follow the steps there.
For in-depth explanations about individual topics and components, visit the following links.
AVF components:
AVF APIs:
How-Tos: