org.droidparts.util.AppUtils2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of droidparts-misc Show documentation
Show all versions of droidparts-misc Show documentation
A carefully crafted Android framework
/**
* Copyright 2017 Alex Yanchenko
*
* 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.
*/
package org.droidparts.util;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import android.content.ComponentName;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
import android.provider.Settings.Secure;
import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_ENABLED;
import static android.content.pm.PackageManager.DONT_KILL_APP;
import static android.content.pm.PackageManager.GET_META_DATA;
import static android.content.pm.PackageManager.GET_SIGNATURES;
import static android.content.pm.PackageManager.SIGNATURE_MATCH;
import static android.provider.Settings.Secure.ANDROID_ID;
public abstract class AppUtils2 extends AppUtils {
public static String getVersionName(Context ctx, boolean withVersionCode) {
try {
PackageInfo pi = ctx.getPackageManager().getPackageInfo(ctx.getPackageName(), 0);
if (withVersionCode) {
return pi.versionName + " (" + pi.versionCode + ")";
} else {
return pi.versionName;
}
} catch (NameNotFoundException e) {
throw new IllegalArgumentException(e);
}
}
//
public static boolean isInstalled(Context ctx, String pkgName) {
try {
ctx.getPackageManager().getApplicationInfo(pkgName, GET_META_DATA);
return true;
} catch (NameNotFoundException e) {
return false;
}
}
public static void setComponentEnabled(Context ctx, Class extends Context> component, boolean enabled) {
PackageManager pm = ctx.getPackageManager();
ComponentName componentName = new ComponentName(ctx, component);
int state = enabled ? COMPONENT_ENABLED_STATE_ENABLED : COMPONENT_ENABLED_STATE_DISABLED;
pm.setComponentEnabledSetting(componentName, state, DONT_KILL_APP);
}
//
public static String getDeviceId(Context ctx) {
return Secure.getString(ctx.getContentResolver(), ANDROID_ID);
}
public static String getSignature(Context ctx, String pkgName) throws NameNotFoundException {
PackageInfo pi = ctx.getPackageManager().getPackageInfo(pkgName, GET_SIGNATURES);
String signature = pi.signatures[0].toCharsString();
return signature;
}
public static boolean doSignaturesMatch(Context ctx, String pkg1, String pkg2) {
boolean match = ctx.getPackageManager().checkSignatures(pkg1, pkg2) == SIGNATURE_MATCH;
return match;
}
public static boolean canInstallNonMarketApps(Context ctx) {
return Secure.getInt(ctx.getContentResolver(), Secure.INSTALL_NON_MARKET_APPS, 0) != 0;
}
public static boolean isInstalledFromMarket(Context ctx, String pkgName) throws NameNotFoundException {
String installerPkg = ctx.getPackageManager().getInstallerPackageName(pkgName);
boolean installedFromMarket = "com.google.android.feedback".equals(installerPkg);
return installedFromMarket;
}
public static long getClassesDexCrc(Context ctx) {
ZipFile zf;
try {
zf = new ZipFile(ctx.getPackageCodePath());
} catch (IOException e) {
L.e(e);
return -1;
}
ZipEntry ze = zf.getEntry("classes.dex");
long crc = ze.getCrc();
return crc;
}
}