def get_android_replacements()

in fix_android_dependencies.py [0:0]


def get_android_replacements():
    """Gets a dictionary of all android-specific replacements to be made."""
    replacements = {}

    compile_sdk = f"compileSdk = {COMPILE_SDK_VERSION}"
    target_sdk = f"targetSdk = {TARGET_SDK_VERSION}"
    build_tools_version = f"buildToolsVersion = \"{BUILD_TOOLS_VERSION}\""

    replacements[COMPILE_SDK_RE] = compile_sdk
    replacements[TARGET_SDK_RE] = target_sdk
    replacements[BUILD_TOOLS_RE] = build_tools_version

    return replacements