Android APK Version Get getFirstInstalled()

Here you can find the source of getFirstInstalled()

Description

get First Installed

License

Apache License

Declaration

public static long getFirstInstalled() 

Method Source Code

//package com.java2s;
/**/*w w  w .ja  v  a 2 s. c om*/
 *  Copyright (C) 2012 Hyperionics Technology LLC <http://www.hyperionics.com>
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import android.app.Application;

import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;

import java.io.*;

import java.lang.reflect.Method;

public class Main {
    private static Application myApp = getApp();

    public static long getFirstInstalled() {
        long firstInstalled = 0;
        PackageManager pm = myApp.getPackageManager();
        try {
            PackageInfo pi = pm.getPackageInfo(myApp
                    .getApplicationContext().getPackageName(),
                    pm.GET_SIGNATURES);
            try {
                try {
                    //noinspection AndroidLintNewApi
                    firstInstalled = pi.firstInstallTime;
                } catch (NoSuchFieldError e) {
                }
            } catch (Exception ee) {
            }
            if (firstInstalled == 0) { // old versions of Android don't have firstInstallTime in PackageInfo
                File dir;
                try {
                    dir = new File(getApp().getApplicationContext()
                            .getExternalCacheDir().getAbsolutePath()
                            + "/.config");
                } catch (Exception e) {
                    dir = null;
                }
                if (dir != null && (dir.exists() || dir.mkdirs())) {
                    File fTimeStamp = new File(dir.getAbsolutePath()
                            + "/.myconfig");
                    if (fTimeStamp.exists()) {
                        firstInstalled = fTimeStamp.lastModified();
                    } else {
                        // create this file - to make it slightly more confusing, write the signature there
                        OutputStream out;
                        try {
                            out = new FileOutputStream(fTimeStamp);
                            out.write(pi.signatures[0].toByteArray());
                            out.flush();
                            out.close();
                        } catch (Exception e) {
                        }
                    }
                }
            }
        } catch (PackageManager.NameNotFoundException e) {
        }
        return firstInstalled;
    }

    public static Application getApp() {
        if (myApp == null) {
            try {
                final Class<?> activityThreadClass = Class
                        .forName("android.app.ActivityThread");
                final Method method = activityThreadClass
                        .getMethod("currentApplication");
                myApp = (Application) method.invoke(null, (Object[]) null);
            } catch (Exception e) {
                // handle exception
            }
        }
        // below gives me /mnt/sdcard/Android/data/com.hyperionics.pdfxTest/cache/tmpPdfx
        // File file = new File(app.getApplicationContext().getExternalCacheDir(), "tmpPdfx");
        return myApp;
    }
}

Related

  1. getAppVersionCode(Context context)
  2. getAppVersionCode(Context context)
  3. getAppVersionName(Context context)
  4. getAppVersionName(Context context, String defVersion)
  5. getApplicationVersion(Context ctx)
  6. getVersion(Context context)
  7. getVersionCode(Context context)
  8. GetVersion(Context context)
  9. getAppVersion(Context context)