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

Commit a4aa7084 authored by Kai Li's avatar Kai Li Committed by Android (Google) Code Review
Browse files

Merge "Create AConfig flag to guard bug fix for AssistStructure." into main

parents 152658e2 d5eb2a0c
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ aconfig_declarations_group {
        "android-sdk-flags-java",
        "android.adaptiveauth.flags-aconfig-java",
        "android.app.appfunctions.flags-aconfig-java",
        "android.app.assist.flags-aconfig-java",
        "android.app.contextualsearch.flags-aconfig-java",
        "android.app.flags-aconfig-java",
        "android.app.jank.flags-aconfig-java",
@@ -1230,6 +1231,20 @@ java_aconfig_library {
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
}

// Assist
aconfig_declarations {
    name: "android.app.assist.flags-aconfig",
    package: "android.app.assist.flags",
    container: "system",
    srcs: ["core/java/android/app/assist/flags.aconfig"],
}

java_aconfig_library {
    name: "android.app.assist.flags-aconfig-java",
    aconfig_declarations: "android.app.assist.flags-aconfig",
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
}

// Smartspace
aconfig_declarations {
    name: "android.app.smartspace.flags-aconfig",
+13 −0
Original line number Diff line number Diff line
package: "android.app.assist.flags"
container: "system"

flag {
  name: "add_placeholder_view_for_null_child"
  namespace: "machine_learning"
  description: "Flag to add a placeholder view when a child view is null."
  bug: "369503426"
  is_fixed_read_only: true
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}