blob: b858ab01ffd96c841012943a9e35275583212dc5 [file] [log] [blame]
Dan Sandlerd1f9f532018-05-02 20:01:38 -04001//
2// Copyright (C) 2018 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17android_app {
18 // the build system in pi-dev can't quite handle R.java in kt
19 // so we will have a mix of java and kotlin files
20 srcs: ["src/**/*.java", "src/**/*.kt"],
21
22 resource_dirs: ["res"],
23
24 name: "EasterEgg",
25
Dan Sandlerf4e83e02020-05-12 21:25:31 -040026 platform_apis: true,
Dan Sandlerd1f9f532018-05-02 20:01:38 -040027 certificate: "platform",
28
Dan Sandlerd1f9f532018-05-02 20:01:38 -040029 optimize: {
30 enabled: false,
Dan Sandlerf4e83e02020-05-12 21:25:31 -040031 },
32
33 static_libs: [
34 "androidx.core_core",
35 "androidx.recyclerview_recyclerview",
36 "androidx.annotation_annotation",
37 "kotlinx-coroutines-android",
38 "kotlinx-coroutines-core",
39 //"kotlinx-coroutines-reactive",
40 ],
41
42 manifest: "AndroidManifest.xml",
43
44 kotlincflags: ["-Xjvm-default=enable"],
Dan Sandlerd1f9f532018-05-02 20:01:38 -040045}