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

Commit 982de1af authored by Desh's avatar Desh
Browse files

AppSearch PropertyPath does not allow non alphanumeric char

Flag: android.app.appfunctions.flags.enable_app_function_manager
Test: cts
Bug: 357551503
Change-Id: I01c3bbb24771b8ad1012259d3972638c1ffdd2c3
parent 2f8329c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8857,7 +8857,7 @@ package android.app.appfunctions {
    method @NonNull public android.app.appsearch.GenericDocument getResultDocument();
    method public void writeToParcel(@NonNull android.os.Parcel, int);
    field @NonNull public static final android.os.Parcelable.Creator<android.app.appfunctions.ExecuteAppFunctionResponse> CREATOR;
    field public static final String PROPERTY_RETURN_VALUE = "android_app_appfunctions_returnvalue";
    field public static final String PROPERTY_RETURN_VALUE = "androidAppfunctionsReturnValue";
  }
}
+1 −2
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ import static android.app.appfunctions.flags.Flags.FLAG_ENABLE_APP_FUNCTION_MANA

import android.annotation.FlaggedApi;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.appsearch.GenericDocument;
import android.os.Bundle;
import android.os.Parcel;
@@ -65,7 +64,7 @@ public final class ExecuteAppFunctionResponse implements Parcelable {
     *
     * <p>See {@link #getResultDocument} for more information on extracting the return value.
     */
    public static final String PROPERTY_RETURN_VALUE = "android_app_appfunctions_returnvalue";
    public static final String PROPERTY_RETURN_VALUE = "androidAppfunctionsReturnValue";

    /**
     * Returns the return value of the executed function.
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ package com.android.extensions.appfunctions {
    ctor public ExecuteAppFunctionResponse(@NonNull android.app.appsearch.GenericDocument, @NonNull android.os.Bundle);
    method @NonNull public android.os.Bundle getExtras();
    method @NonNull public android.app.appsearch.GenericDocument getResultDocument();
    field public static final String PROPERTY_RETURN_VALUE = "android_app_appfunctions_returnvalue";
    field public static final String PROPERTY_RETURN_VALUE = "androidAppfunctionsReturnValue";
  }

}
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public final class ExecuteAppFunctionResponse {
     *
     * <p>See {@link #getResultDocument} for more information on extracting the return value.
     */
    public static final String PROPERTY_RETURN_VALUE = "android_app_appfunctions_returnvalue";
    public static final String PROPERTY_RETURN_VALUE = "androidAppfunctionsReturnValue";

    /**
     * Returns the return value of the executed function.