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

Commit ea6a0280 authored by Oluwarotimi Adesina's avatar Oluwarotimi Adesina Committed by Android (Google) Code Review
Browse files

Merge "AppSearch PropertyPath does not allow non alphanumeric char" into main

parents c7bde954 982de1af
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.