我是靠谱客的博主 精明糖豆,最近开发中收集的这篇文章主要介绍Android 技巧 —— Debug 判断不再用 BuildConfig,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

解决方案:使用 ApplicationInfo.FLAG_DEBUGGABLE

反编译 Debug 包和 Release 包对比看看有没有区别,会发现他们 AndroidManifest.xml 中 application 节点的 android:debuggable 值是不同的。

Debug 包值为 true,Release 包值为 false,这是编译自动修改的。

所以我们考虑通过 ApplicationInfo 的这个属性去判断是否是 Debug 版本,如下:


public class AppUtils {
 
    private static Boolean isDebug = null;
 
    public static boolean isDebug() {
        return isDebug == null ? false : isDebug.booleanValue();
    }
 
    /**
     * Sync lib debug with app's debug value. Should be called in module Application
     *
     * @param context
     */
    public static void syncIsDebug(Context context) {
        if (isDebug == null) {
            isDebug = context.getApplicationInfo() != null &&
                    (context.getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
        }
    }
}

在自己的 Application 内调用进行初始化,

AppUtils.syncIsDebug(getApplicationContext());

这样以后调用 AppUtils.isDebug() 即可判断是否是 Debug 版本。同时适用于 Module 是 Lib 和 applicationId 被修改的情况,比 BuildConfig.DEBUG 靠谱的多。

这个方案有个注意事项就是自己 App Module 中不能主动设置 android:debuggable,否则无论 Debug 还是 Release 版会始终是设置的值。

当然本身就没有自动设置的必要。

最后

以上就是精明糖豆为你收集整理的Android 技巧 —— Debug 判断不再用 BuildConfig的全部内容,希望文章能够帮你解决Android 技巧 —— Debug 判断不再用 BuildConfig所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部