Files
lineage-sdk/lib/Android.bp
Luca Stefani 34c9267a74 lineage-sdk: Import SPN schema
* Will be used to verify SPN xml at build time
  and to automatically generate a C++/Java parser

Change-Id: Ic401c01b74a958b2e813f986725e6c677febabfb
2021-03-13 17:35:59 +01:00

44 lines
1.1 KiB
Plaintext

//
// Copyright (C) 2019 The LineageOS Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
lineage_sdk_lib_src = "src/java/org/lineageos/lib/"
java_library {
name: "org.lineageos.lib.phone",
sdk_version: "current",
static_libs: [
"libphonenumber",
],
srcs: [
lineage_sdk_lib_src + "/phone/*.java",
],
}
// Sensitive Phone Numbers schema
// =============================================================
filegroup {
name: "spn-schema",
srcs: ["SpnInfo.xsd"],
}
xsd_config {
name: "spn-info",
srcs: [":spn-schema"],
api_dir: "schema",
package_name: "org.lineageos.lib.phone.spn",
}