Java tutorial
//package com.java2s; // Use of this source code is governed by a BSD-style license that can be import android.app.PendingIntent; import android.os.Build; public class Main { /** * @see android.app.PendingIntent#getCreatorPackage() */ @SuppressWarnings("deprecation") public static String getCreatorPackage(PendingIntent intent) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { return intent.getCreatorPackage(); } else { return intent.getTargetPackage(); } } }