AI comparison
Grounded in the excerpts below · verify against the source
in both Files changed across versions
These files exist in both AOSP 16 and 13 and matched the query. Compare the excerpts side‑by‑side to see how they evolved.
-
packages/services/Telecomm/src/com/android/server/telecom/ui/NotificationChannelManager.java 1 match in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 1–161 0.69package com.android.server.telecom.ui; import android.app.NotificationChannel; import android.app.NotificationManager; import android.content.BroadcastReceiver; import android.content.Context; importAOSP 13 android-13.0.0_r84
lines 1–149 0.69package com.android.server.telecom.ui; import android.app.NotificationChannel; import android.app.NotificationManager; import android.content.BroadcastReceiver; import android.content.Context; import -
packages/apps/Traceur/src/com/android/traceur/Receiver.java 1 match in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 334–357 0.67private static void createNotificationChannels(Context context) { NotificationChannel tracingChannel = new NotificationChannel( NOTIFICATION_CHANNEL_TRACING, context.geAOSP 13 android-13.0.0_r84
lines 294–315 0.67private static void createNotificationChannels(Context context) { NotificationChannel tracingChannel = new NotificationChannel( NOTIFICATION_CHANNEL_TRACING, context.ge -
frameworks/base/core/java/com/android/internal/notification/SystemNotificationChannels.java 1 match in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 1–272 0.67package com.android.internal.notification; import static android.app.admin.DevicePolicyResources.Strings.Core.NOTIFICATION_CHANNEL_DEVICE_ADMIN; import android.app.INotificationManager; import androAOSP 13 android-13.0.0_r84
lines 1–263 0.67package com.android.internal.notification; import static android.app.admin.DevicePolicyResources.Strings.Core.NOTIFICATION_CHANNEL_DEVICE_ADMIN; import android.app.INotificationManager; import andro -
frameworks/base/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java 1 match in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 73–85 0.67@Override public void onCreate(Bundle icicle) { super.onCreate(icicle); mVibrator = (Vibrator)getSystemService(VIBRATOR_SERVICE); mActivityCreateTime = System.currentTimeMiAOSP 13 android-13.0.0_r84
lines 73–85 0.67@Override public void onCreate(Bundle icicle) { super.onCreate(icicle); mVibrator = (Vibrator)getSystemService(VIBRATOR_SERVICE); mActivityCreateTime = System.currentTimeMi -
frameworks/base/core/java/android/app/NotificationManager.java 2 matches in 16 · 2 matches in 13 AOSP 16 android-16.0.0_r4
lines 1535–1544 0.67@Override public List<NotificationChannel> apply(NotificationChannelQuery query) { INotificationManager service = service(); try {lines 1275–1283 0.66public void createNotificationChannels(@NonNull List<NotificationChannel> channels) { INotificationManager service = service(); try { service.createNotificationChannels(mCoAOSP 13 android-13.0.0_r84
lines 992–1000 0.67public List<NotificationChannel> getNotificationChannels() { INotificationManager service = getService(); try { return service.getNotificationChannels(mContext.getOpPackagelines 935–943 0.66public void createNotificationChannels(@NonNull List<NotificationChannel> channels) { INotificationManager service = getService(); try { service.createNotificationChannels( -
packages/apps/Stk/src/com/android/stk/StkAppService.java 1 match in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 2184–2194 0.67private void createAllChannels() { NotificationChannel notificationChannel = new NotificationChannel( STK_NOTIFICATION_CHANNEL_ID, getResources().getString(R.stAOSP 13 android-13.0.0_r84
lines 2200–2210 0.67private void createAllChannels() { NotificationChannel notificationChannel = new NotificationChannel( STK_NOTIFICATION_CHANNEL_ID, getResources().getString(R.st -
device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/NotificationCenter.java 2 matches in 16 · 1 match in 13 AOSP 16 android-16.0.0_r4
lines 115–128 0.67private void createNotificationChannel() { // Create notification channel for firmware update notification CharSequence dfuName = mContext.getString(R.string.settings_notif_update_chanlines 130–138 0.66private void ensureNotificationChannel(String channelId, int importance, CharSequence name, String description) { if (mNotificationManager.getNotificationChannel(channelId) != nullAOSP 13 android-13.0.0_r84
lines 115–128 0.67private void createNotificationChannel() { // Create notification channel for firmware update notification CharSequence dfuName = mContext.getString(R.string.settings_notif_update_chan
only in 16 Files matched only in AOSP 16
These files matched the query in AOSP 16 but didn't appear in the top results for AOSP 13. They may have been removed, renamed, or refactored beyond the query's reach.
-
public DownloadNotifier(Context context) { mContext = context; mNotifManager = context.getSystemService(NotificationManager.class); // Ensure that all our channels are ready t
only in 13 Files matched only in AOSP 13
These files matched the query in AOSP 13 but didn't appear in the top results for AOSP 16. They may be new in this version, or refactored from older files that no longer match the query.
-
public NotificationChannel getChannel(boolean buzz) { String id = (buzz ? BUZZY_CHANNEL_ID : QUIET_CHANNEL_ID); String name = (buzz ? "This channel is buzzy" : "This channel is quiet") -
static void createNotificationChannels(Context context) { NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE)