blob: 5c3e36e6bfcc898a0f87c0c722399c3cc28958ab [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ARC_SETUP_ANDROID_SDK_VERSION_H_
#define ARC_SETUP_ANDROID_SDK_VERSION_H_
#include <climits>
namespace arc {
enum class AndroidSdkVersion {
UNKNOWN = 0,
ANDROID_M = 23,
ANDROID_N_MR1 = 25,
ANDROID_P = 28,
ANDROID_R = 30,
// Development SDK number is equal to
// android.os.Build.VersionCode#CUR_DEVELOPMENT in Android framework.
ANDROID_DEVELOPMENT = 10000,
};
} // namespace arc
#endif // ARC_SETUP_ANDROID_SDK_VERSION_H_