Change AIDL module name

Naming rule for aidl module is changed to make using unstable AIDL module more explicit
So, to use unstable version AIDL module, use "-unstable" suffix version
And also, module name without any suffix means latest frozen version.

But wrt modules for C++ and NDK, module name with latest frozen version
is not available for now.

In b/139280289, more background is explained

Test: m
Bug: 139280289
Change-Id: Ib38e2cb114cc373ef50652f421ddaff9b4fbe5b9
Merged-In: Ib38e2cb114cc373ef50652f421ddaff9b4fbe5b9
This commit is contained in:
Jeongik Cha
2019-10-15 17:03:51 +09:00
parent 10d6f20bc9
commit cc0b57ca06
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ java_library_static {
],
static_libs: [
"dnsresolver_aidl_interface-V2-java",
"netd_aidl_interface-java",
"netd_aidl_interface-unstable-java",
"networkstack-client",
"tethering-client",
],

View File

@@ -74,7 +74,7 @@ android_test {
"libui",
"libunwindstack",
"libutils",
"netd_aidl_interface-V2-cpp",
"netd_aidl_interface-cpp",
],
dxflags: ["--multi-dex"],

View File

@@ -55,6 +55,6 @@ android_test {
"libui",
"libunwindstack",
"libutils",
"netd_aidl_interface-V2-cpp",
"netd_aidl_interface-cpp",
],
}

View File

@@ -37,7 +37,7 @@ java_defaults {
"libvndksupport",
"libziparchive",
"libz",
"netd_aidl_interface-V2-cpp",
"netd_aidl_interface-cpp",
],
}