Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 633b2b7a authored by Jeongik Cha's avatar Jeongik Cha
Browse files

Correct include_dirs in networkstack-aidl-interfaces

Even though root dir is frameworks/native/aidl/binder, its include_dir
included android/os, it caused a problem while building frozen interface
including PersistableBundle.
So correct it, and also add 'import' into aidl file.

Bug: 133526962
Test: freeze api and then m
Change-Id: Ib5583e95be32957fa2544b6f6cf4b029a05013c2
parent ee5606d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ aidl_interface {
    local_include_dir: "src",
    include_dirs: [
        "frameworks/base/core/java", // For framework parcelables.
        "frameworks/native/aidl/binder/android/os", // For PersistableBundle.aidl
        "frameworks/native/aidl/binder", // For PersistableBundle.aidl
        "frameworks/base/wifi/aidl-export", // For wifi parcelables.
    ],
    srcs: [
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ package android.net;
import android.net.CaptivePortalData;
import android.net.INetworkMonitor;
import android.net.PrivateDnsConfigParcel;
import android.os.PersistableBundle;

/** @hide */
oneway interface INetworkMonitorCallbacks {