Showing posts with label list. Show all posts
Showing posts with label list. Show all posts

Monday, December 5, 2016

Code Snippet Installed Running Applications List

Code Snippet Installed Running Applications List


Create an Android Project as mentioned here.

List of Installed Apps:
Add the below code to get all the installed apps,

PackageManager packageManager = getPackageManager();
List<ApplicationInfo> appList =                  packageManager.getInstalledApplications(PackageManager.GET_ACTIVITIES);
for(ApplicationInfo info : appList){
    Log.i("AppInstallChecker",info.loadLabel(packageManager).toString());
 }

List of Running Apps:
Use the below code to get the list of running apps,

ActivityManager actvityManager = (ActivityManager) 
                                                                 this.getSystemService( ACTIVITY_SERVICE );
List<RunningAppProcessInfo> procInfos = actvityManager.getRunningAppProcesses();
for(RunningAppProcessInfo info : procInfos){
        Log.i("Running",info.processName);
 }

Check for App installed or not :
protected boolean isAppInstalled(String packageName) {
        Intent mIntent = getPackageManager().getLaunchIntentForPackage(packageName);
        if (mIntent != null) {
            return true;
        }
        else {
            return false;
        }

    }


Courtesy : 
http://stackoverflow.com/questions/13566479/check-app-is-installed-on-device-android-code
http://www.dreamincode.net/forums/topic/138412-android-20-list-of-running-applications/


Available link for download

Read more »

Saturday, November 19, 2016

Complete list of iphones fireware files IOS

Complete list of iphones fireware files IOS




                                 
According to the iPhone wiki, a firmware is an IPSW file which contains everything that is needed to run the core operating system, iOS.

Todays stroll, I would brief you guys on how to make use of the IPSW files and also give you a full list of IPSW files to download.

The IPSW Files can be used in both windows and Mac PC, as long as the iTunes work properly.

To make use of the IPSW files, simply follow the below procedures.

 
 
HOW TO UPGRADE AN IPHONE
1. First connect your iOS or iPhone device to your computer.
2. Then, inside iTunes, select the device connected.
3. If you are making use of a Mac computer, simply hold the down “Option” key and click on “Update”.
4. If you are using a windows PC, then hold down “Shift” button and click on “update”.
5. Then select any of the IPSW files that you have downloaded from the Links I would be sharing below, and click “Choose”.
6. Then wait for the iOS device to update. Remember to backup your device to be on a safer side.




Below is the full list of iPhone Firmware Download Links (IPSW)- Latest Versions Only

iPhone 6 Plus

8.1 (12B411)
iPhone7,1_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone7,1_8.0.2_12A405_Restore.ipsw
8.0 (12A366)
iPhone7,1_8.0_12A366_Restore.ipsw



iPhone 6

8.1 (12B411)
iPhone7,2_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone7,2_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone7,2_8.0_12A365_Restore.ipsw



iPhone 5S (Global)

8.1 (12B411)
iPhone6,2_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone6,2_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone6,2_8.0_12A365_Restore.ipsw



iPhone 5S (GSM)

8.1 (12B411)
iPhone6,1_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone6,1_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone6,1_8.0_12A365_Restore.ipsw



iPhone 5C (Global)

8.1 (12B411)
iPhone5,4_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone5,4_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone5,4_8.0_12A365_Restore.ipsw



iPhone 5C (GSM)

8.1 (12B411)
iPhone5,3_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone5,3_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone5,3_8.0_12A365_Restore.ipsw



iPhone 5 (Global)

8.1 (12B411)
iPhone5,2_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone5,2_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone5,2_8.0_12A365_Restore.ipsw



iPhone 5 (GSM)

8.1 (12B411)
iPhone5,1_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone5,1_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone5,1_8.0_12A365_Restore.ipsw



iPhone 4S

8.1 (12B411)
iPhone4,1_8.1_12B411_Restore.ipsw
8.0.2 (12A405)
iPhone4,1_8.0.2_12A405_Restore.ipsw
8.0 (12A365)
iPhone4,1_8.0_12A365_Restore.ipsw
For more instruction on how to upgrade your iPhone kindly post by comment.....

Available link for download

Read more »