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

Commit 463e5e2d authored by Alexander Dorokhine's avatar Alexander Dorokhine Committed by Android (Google) Code Review
Browse files

Merge "Move framework-appsearch out of framework.jar."

parents bd9f7a61 04a05a8b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -203,7 +203,6 @@ filegroup {
    name: "framework-non-updatable-sources",
    srcs: [
        // Java/AIDL sources under frameworks/base
        ":framework-appsearch-sources",
        ":framework-blobstore-sources",
        ":framework-core-sources",
        ":framework-drm-sources",
@@ -262,6 +261,7 @@ filegroup {
filegroup {
    name: "framework-updatable-sources",
    srcs: [
        ":framework-appsearch-sources",
        ":framework-sdkext-sources",
        ":framework-statsd-sources",
        ":updatable-media-srcs",
@@ -427,6 +427,7 @@ java_library {
    defaults: ["framework-defaults"],
    srcs: [":framework-non-updatable-sources"],
    libs: [
        "framework-appsearch-stubs",
        // TODO(b/146167933): Use framework-statsd-stubs
        "framework-statsd",
        "framework-wifi-stubs",
@@ -466,6 +467,7 @@ java_library {
    installable: false, // this lib is a build-only library
    static_libs: [
        "framework-minus-apex",
        "framework-appsearch", // TODO(b/146218515): should be framework-appsearch-stubs
        "framework-sdkext-stubs-systemapi",
        // TODO(b/146167933): Use framework-statsd-stubs instead.
        "framework-statsd",
+4 −2
Original line number Diff line number Diff line
@@ -14,9 +14,11 @@

apex {
    name: "com.android.appsearch",

    manifest: "apex_manifest.json",

    java_libs: [
        "framework-appsearch",
        "service-appsearch",
    ],
    key: "com.android.appsearch.key",
    certificate: ":com.android.appsearch.certificate",
}
+46 −11
Original line number Diff line number Diff line
@@ -23,17 +23,52 @@ filegroup {

java_library {
  name: "framework-appsearch",
  installable: false,
  sdk_version: "core_platform",
  installable: true,
  sdk_version: "core_platform", // TODO(b/146218515) should be core_current
  srcs: [":framework-appsearch-sources"],
  libs: [
    "framework-minus-apex",  // TODO(b/146218515) should be framework-system-stubs
  ],
}

metalava_appsearch_docs_args =
    "--hide-package com.android.server " +
    "--error UnhiddenSystemApi " +
    "--hide RequiresPermission " +
    "--hide MissingPermission " +
    "--hide BroadcastBehavior " +
    "--hide HiddenSuperclass " +
    "--hide DeprecationMismatch " +
    "--hide UnavailableSymbol " +
    "--hide SdkConstant " +
    "--hide HiddenTypeParameter " +
    "--hide Todo --hide Typo " +
    "--hide HiddenTypedefConstant " +
    "--show-annotation android.annotation.SystemApi "

droidstubs {
    name: "framework-appsearch-stubs-srcs",
    srcs: [
        ":framework-annotations",
        ":framework-appsearch-sources",
    ],
    aidl: {
        include_dirs: ["frameworks/base/core/java"],
    },
    args: metalava_appsearch_docs_args,
    sdk_version: "core_current",
    libs: ["android_system_stubs_current"],
}

java_library {
    name: "framework-appsearch-stubs",
    srcs: [":framework-appsearch-stubs-srcs"],
    aidl: {
        export_include_dirs: [
            "java",
        ],
    },
  libs: [
    "framework-minus-apex",
  ],
    sdk_version: "core_current",
    libs: ["android_system_stubs_current"],
    installable: false,
}
+9 −3
Original line number Diff line number Diff line
@@ -15,19 +15,25 @@
 */
package android.app.appsearch;

import android.annotation.SystemApi;
import android.app.SystemServiceRegistry;
import android.content.Context;

/**
 * This is where the AppSearchManagerService wrapper is registered.
 * Class holding initialization code for the AppSearch module.
 *
 * TODO(b/142567528): add comments when implement this class
 * @hide
 */
@SystemApi
public class AppSearchManagerFrameworkInitializer {
    private AppSearchManagerFrameworkInitializer() {}

    /**
     * TODO(b/142567528): add comments when implement this class
     * Called by {@link SystemServiceRegistry}'s static initializer and registers all AppSearch
     * services to {@link Context}, so that {@link Context#getSystemService} can return them.
     *
     * @throws IllegalStateException if this is called from anywhere besides
     *     {@link SystemServiceRegistry}
     */
    public static void initialize() {
        SystemServiceRegistry.registerStaticService(
+8 −0
Original line number Diff line number Diff line
@@ -811,6 +811,14 @@ package android.app.admin {
}
package android.app.appsearch {
  public class AppSearchManagerFrameworkInitializer {
    method public static void initialize();
  }
}
package android.app.assist {
  public static class AssistStructure.ViewNode {
Loading