Single-version search →
7 files in both · 1 only in 16 · 2 only in 13 · 1215 ms

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.

  1. 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

    java
    package com.android.server.telecom.ui;
    
    import android.app.NotificationChannel;
    import android.app.NotificationManager;
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import

    AOSP 13 android-13.0.0_r84

    java
    package com.android.server.telecom.ui;
    
    import android.app.NotificationChannel;
    import android.app.NotificationManager;
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import
  2. packages/apps/Traceur/src/com/android/traceur/Receiver.java 1 match in 16 · 1 match in 13

    AOSP 16 android-16.0.0_r4

    java
    private static void createNotificationChannels(Context context) {
            NotificationChannel tracingChannel = new NotificationChannel(
                NOTIFICATION_CHANNEL_TRACING,
                context.ge

    AOSP 13 android-13.0.0_r84

    java
    private static void createNotificationChannels(Context context) {
            NotificationChannel tracingChannel = new NotificationChannel(
                NOTIFICATION_CHANNEL_TRACING,
                context.ge
  3. 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

    java
    package com.android.internal.notification;
    
    import static android.app.admin.DevicePolicyResources.Strings.Core.NOTIFICATION_CHANNEL_DEVICE_ADMIN;
    
    import android.app.INotificationManager;
    import andro

    AOSP 13 android-13.0.0_r84

    java
    package com.android.internal.notification;
    
    import static android.app.admin.DevicePolicyResources.Strings.Core.NOTIFICATION_CHANNEL_DEVICE_ADMIN;
    
    import android.app.INotificationManager;
    import andro
  4. 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

    java
    @Override
        public void onCreate(Bundle icicle) {
            super.onCreate(icicle);
            mVibrator = (Vibrator)getSystemService(VIBRATOR_SERVICE);
            mActivityCreateTime = System.currentTimeMi

    AOSP 13 android-13.0.0_r84

    java
    @Override
        public void onCreate(Bundle icicle) {
            super.onCreate(icicle);
            mVibrator = (Vibrator)getSystemService(VIBRATOR_SERVICE);
            mActivityCreateTime = System.currentTimeMi
  5. frameworks/base/core/java/android/app/NotificationManager.java 2 matches in 16 · 2 matches in 13

    AOSP 16 android-16.0.0_r4

    java
    @Override
                    public List<NotificationChannel> apply(NotificationChannelQuery query) {
                        INotificationManager service = service();
                        try {
                 
    java
    public void createNotificationChannels(@NonNull List<NotificationChannel> channels) {
            INotificationManager service = service();
            try {
                service.createNotificationChannels(mCo

    AOSP 13 android-13.0.0_r84

    java
    public List<NotificationChannel> getNotificationChannels() {
            INotificationManager service = getService();
            try {
                return service.getNotificationChannels(mContext.getOpPackage
    java
    public void createNotificationChannels(@NonNull List<NotificationChannel> channels) {
            INotificationManager service = getService();
            try {
                service.createNotificationChannels(
  6. packages/apps/Stk/src/com/android/stk/StkAppService.java 1 match in 16 · 1 match in 13

    AOSP 16 android-16.0.0_r4

    java
    private void createAllChannels() {
            NotificationChannel notificationChannel = new NotificationChannel(
                    STK_NOTIFICATION_CHANNEL_ID,
                    getResources().getString(R.st

    AOSP 13 android-13.0.0_r84

    java
    private void createAllChannels() {
            NotificationChannel notificationChannel = new NotificationChannel(
                    STK_NOTIFICATION_CHANNEL_ID,
                    getResources().getString(R.st
  7. 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

    java
    private void createNotificationChannel() {
            // Create notification channel for firmware update notification
            CharSequence dfuName = mContext.getString(R.string.settings_notif_update_chan
    java
    private void ensureNotificationChannel(String channelId,
                int importance, CharSequence name, String description) {
            if (mNotificationManager.getNotificationChannel(channelId) != null

    AOSP 13 android-13.0.0_r84

    java
    private 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.

  1. Lines 96–118 · java · AOSP 16
    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.

  1. Lines 289–307 · java · AOSP 13
    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")
  2. Lines 831–864 · java · AOSP 13
    static void createNotificationChannels(Context context) {
            NotificationManager notificationManager =
                    (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE)

Want this comparison inside Claude Code, Cursor, or Cline? MCP setup →