Thirdparty apps like glyphcomposer only send data to an app with a package name of com.nothing.thirdparty, so we'll implement an app that will receive data and then send it to ParanoidGlyph Change-Id: I2bf88d6481af49dcac5567c6ea7577a083229132
34 lines
548 B
Plaintext
34 lines
548 B
Plaintext
//
|
|
// Copyright (C) 2025 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
android_app {
|
|
name: "GlyphAdapter",
|
|
certificate: "platform",
|
|
platform_apis: true,
|
|
privileged: true,
|
|
system_ext_specific: true,
|
|
|
|
srcs: [
|
|
"src/**/*.java",
|
|
"src/**/*.kt",
|
|
],
|
|
|
|
static_libs: [
|
|
"IGlyphService-java",
|
|
],
|
|
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "IGlyphService",
|
|
unstable: true,
|
|
local_include_dir: "aidl",
|
|
srcs: [
|
|
"aidl/com/nothing/thirdparty/IGlyphService.aidl",
|
|
],
|
|
}
|
|
|