blob: 701f79752e3837eedfab5ff41e3e1a4e2d4493ce [file] [log] [blame]
Alex Buynytskyyafddc072023-02-09 22:40:53 +00001#!/bin/bash
2
3set -ex
4
Alex Buynytskyy0fc39522023-04-26 05:17:13 +00005export FINAL_BUG_ID='0' # CI only
Alex Buynytskyyafddc072023-02-09 22:40:53 +00006
Alex Buynytskyy0fc39522023-04-26 05:17:13 +00007export FINAL_PLATFORM_CODENAME='VanillaIceCream'
8export CURRENT_PLATFORM_CODENAME='VanillaIceCream'
9export FINAL_PLATFORM_CODENAME_JAVA='VANILLA_ICE_CREAM'
Alex Buynytskyy0fc39522023-04-26 05:17:13 +000010export FINAL_PLATFORM_VERSION='15'
Alex Buynytskyyafddc072023-02-09 22:40:53 +000011
Alex Buynytskyy0fc39522023-04-26 05:17:13 +000012# Set arbitrary large values for CI.
Alex Buynytskyy5d205dc2023-04-27 15:30:19 -070013# SDK_VERSION needs to be <61 (lint/libs/lint-api/src/main/java/com/android/tools/lint/detector/api/ApiConstraint.kt)
Alex Buynytskyyd03be092023-05-01 18:56:26 +000014# There are multiple places where we rely on next SDK version to be previous + 1, e.g. RESOURCES_SDK_INT.
15# We might or might not fix this in future, but for now let's keep it +1.
16export FINAL_PLATFORM_SDK_VERSION='35'
17# Feel free to randomize once in a while to detect buggy version detection code.
Alex Buynytskyy5d205dc2023-04-27 15:30:19 -070018export FINAL_MAINLINE_EXTENSION='58'
Alex Buynytskyyd98c43c2023-04-11 16:47:35 +000019
20# Options:
21# 'unfinalized' - branch is in development state,
Justin Yun7c28c232024-01-31 16:56:10 +090022# 'vintf' - VINTF is finalized
23# 'sdk' - VINTF and SDK/API are finalized
Alex Buynytskyyd98c43c2023-04-11 16:47:35 +000024# 'rel' - branch is finalized, switched to REL
25export FINAL_STATE='unfinalized'
Jihoon Kang59c61ac2023-11-15 00:38:41 +000026
Inseob Kim9d5066b2024-01-19 21:28:09 +090027export BUILD_FROM_SOURCE_STUB=true
28
29# FINAL versions for VINTF
Justin Yun7c28c232024-01-31 16:56:10 +090030# TODO(b/323985297): The version must match with that from the release configuration.
31# Instead of hardcoding the version here, read it from a release configuration.
32export FINAL_BOARD_API_LEVEL='202404'