blob: 7830fbb809504d3977b8a23ca15a1eb49cca27d8 [file] [log] [blame]
Bob Badour63e8af32021-04-20 13:58:12 -07001package {
2 default_applicable_licenses: ["external_okio_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "external_okio_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 ],
13 license_text: [
14 "LICENSE.txt",
15 ],
16}
17
arangelov3f7da6e2021-04-19 13:18:50 +010018java_library {
19 name: "okio-lib",
20 srcs: [
21 "okio/src/jvmMain/**/*.kt",
22 "okio/src/commonMain/**/*.kt",
23 ],
24 static_libs: [
25 "guava-android-annotation-stubs",
26 ],
27 kotlincflags: [
28 "-Xmulti-platform",
29 ],
30 sdk_version: "current",
arangelov3f7da6e2021-04-19 13:18:50 +010031}