• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Initialization of dependencies of Java Tink."""
2
3load("@com_google_protobuf//:protobuf_deps.bzl", javalite_protobuf_deps = "protobuf_deps")
4load("@build_bazel_rules_android//android:rules.bzl", "android_sdk_repository")
5
6def tink_java_deps_init():
7    """Initializes dependencies of Java Tink."""
8    javalite_protobuf_deps()
9
10    android_sdk_repository(
11        name = "androidsdk",
12        # Tink uses some APIs that only supported at this level.
13        api_level = 26,  # Oreo
14    )
15