Steven Moreland | 3549659 | 2022-04-19 00:57:45 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | source ../envsetup.sh |
| 6 | |
| 7 | # default target to modify tree and build SDK |
| 8 | lunch aosp_arm64-userdebug |
| 9 | |
| 10 | set -x |
| 11 | |
| 12 | # This script is WIP and only finalizes part of the Android branch for release. |
| 13 | # The full process can be found at (INTERNAL) go/android-sdk-finalization. |
| 14 | |
| 15 | # VNDK snapshot (TODO) |
| 16 | # SDK snapshots (TODO) |
| 17 | # Update references in the codebase to new API version (TODO) |
| 18 | # ... |
| 19 | |
| 20 | AIDL_TRANSITIVE_FREEZE=true m aidl-freeze-api |
| 21 | |
| 22 | # TODO(b/229413853): test while simulating 'rel' for more requirements AIDL_FROZEN_REL=true |
| 23 | m # test build |
| 24 | |
| 25 | # Build SDK (TODO) |
| 26 | # lunch sdk... |
| 27 | # m ... |