22 lines
352 B
Text
22 lines
352 B
Text
|
/*
|
||
|
* Copyright (C) 2017-2020 The LineageOS Project
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
java_library {
|
||
|
name: "org.ifaa.android.manager",
|
||
|
installable: true,
|
||
|
srcs: [
|
||
|
"src/**/*.java",
|
||
|
"src/**/I*.aidl",
|
||
|
],
|
||
|
libs: [
|
||
|
"unsupportedappusage",
|
||
|
],
|
||
|
aidl: {
|
||
|
local_include_dirs: ["src"],
|
||
|
},
|
||
|
}
|