如何检查 android 库中的可调试或调试构建类型?
How to check debuggable or debug build type in android library?
我有一个 Android AAR 库。我想对我的库的消费者应用程序施加的一项安全策略是,当 debuggable
为真或使用 debug buildType.
[=13= 创建 apk 时,它不能使用我的库]
如何在 android 中以编程方式检查此内容?
有一个解决方法是使用反射来获取项目的(不是库的)BuildConfig 值,如下所示:
/**
* Gets a field from the project's BuildConfig. This is useful when, for example, flavors
* are used at the project level to set custom fields.
* @param context Used to find the correct file
* @param fieldName The name of the field-to-access
* @return The value of the field, or {@code null} if the field is not found.
*/
public static Object getBuildConfigValue(Context context, String fieldName) {
try {
Class<?> clazz = Class.forName(context.getPackageName() + ".BuildConfig");
Field field = clazz.getField(fieldName);
return field.get(null);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
return null;
}
例如,要获取 DEBUG
字段,只需从库 Activity
:
中调用它
boolean debug = (Boolean) getBuildConfigValue(this, "DEBUG");
我还没有尝试过,不能保证它会一直有效,但你可以继续!!!
检查 AndroidManifest 文件上的 debuggable
标签是更好的方法:
public static boolean isDebuggable(Context context) {
return ((context.getApplicationInfo().flags
& ApplicationInfo.FLAG_DEBUGGABLE) != 0);
}
我有一个 Android AAR 库。我想对我的库的消费者应用程序施加的一项安全策略是,当 debuggable
为真或使用 debug buildType.
[=13= 创建 apk 时,它不能使用我的库]
如何在 android 中以编程方式检查此内容?
有一个解决方法是使用反射来获取项目的(不是库的)BuildConfig 值,如下所示:
/**
* Gets a field from the project's BuildConfig. This is useful when, for example, flavors
* are used at the project level to set custom fields.
* @param context Used to find the correct file
* @param fieldName The name of the field-to-access
* @return The value of the field, or {@code null} if the field is not found.
*/
public static Object getBuildConfigValue(Context context, String fieldName) {
try {
Class<?> clazz = Class.forName(context.getPackageName() + ".BuildConfig");
Field field = clazz.getField(fieldName);
return field.get(null);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
return null;
}
例如,要获取 DEBUG
字段,只需从库 Activity
:
boolean debug = (Boolean) getBuildConfigValue(this, "DEBUG");
我还没有尝试过,不能保证它会一直有效,但你可以继续!!!
检查 AndroidManifest 文件上的 debuggable
标签是更好的方法:
public static boolean isDebuggable(Context context) {
return ((context.getApplicationInfo().flags
& ApplicationInfo.FLAG_DEBUGGABLE) != 0);
}