1#!/bin/bash 2 3set -e 4 5source ../envsetup.sh 6 7# default target to modify tree and build SDK 8lunch aosp_arm64-userdebug 9 10set -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 20AIDL_TRANSITIVE_FREEZE=true m aidl-freeze-api 21 22# TODO(b/229413853): test while simulating 'rel' for more requirements AIDL_FROZEN_REL=true 23m # test build 24 25# Build SDK (TODO) 26# lunch sdk... 27# m ... 28