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

Commit a6958bc5 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11778614 from 6db1f1ae to 24Q3-release

Change-Id: I1e6675b501d92a25dcdafad859f3c2f3cc562e1e
parents 28f00834 6db1f1ae
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -29,6 +29,13 @@ license {
    ],
}

prebuilt_etc {
    name: "preloaded-classes",
    src: "preloaded-classes",
    filename: "preloaded-classes",
    installable: false,
}

filegroup {
    name: "preloaded-classes-denylist",
    srcs: ["preloaded-classes-denylist"],
+0 −6
Original line number Diff line number Diff line
@@ -4538,12 +4538,6 @@ public class Notification implements Parcelable
         */
        @NonNull
        public Builder setWhen(long when) {
            if (updateRankingTime()) {
                // don't show a timestamp that's decades old
                if (mN.extras.getBoolean(EXTRA_SHOW_WHEN, true) && when == 0) {
                    return this;
                }
            }
            mN.when = when;
            return this;
        }
+5 −0
Original line number Diff line number Diff line
@@ -1814,6 +1814,11 @@ public final class SystemServiceRegistry {
                        return null;
                    }
                    break;
                case Context.APPWIDGET_SERVICE:
                    if (!hasSystemFeatureOpportunistic(ctx, PackageManager.FEATURE_APP_WIDGETS)) {
                        return null;
                    }
                    break;
            }
            Slog.wtf(TAG, "Manager wrapper not available: " + name);
            return null;
+2 −1
Original line number Diff line number Diff line
sandness@google.com #{LAST_RESORT_SUGGESTION}
scottjonathan@google.com #{LAST_RESORT_SUGGESTION}
rubinxu@google.com #{LAST_RESORT_SUGGESTION}
 No newline at end of file
+6 −2
Original line number Diff line number Diff line
@@ -17,10 +17,14 @@ database tool. On your development machine, run the tool from the
<code>platform-tools/</code> folder of your SDK. On the emulator, run the tool
with adb shell, for example, <code>adb shell sqlite3</code>.

<p>The version of SQLite depends on the version of Android. See the following table:
<p>The version of SQLite depends on the version of Android. In the past,
  SQLite upgrades have been delivered as part of a new API level, but more
  recently SQLite may be upgraded within an API level.  See the following
  table:
<table style="width:auto;">
  <tr><th>Android API</th><th>SQLite Version</th></tr>
  <tr><td>LATEST</td><td>3.42.0</td></tr>
  <tr><td>API 35</td><td>3.44.3</td></tr>
  <tr><td>API 34</td><td>3.42.0</td></tr>
  <tr><td>API 34</td><td>3.39</td></tr>
  <tr><td>API 33</td><td>3.32</td></tr>
  <tr><td>API 32</td><td>3.32</td></tr>
Loading