区分Android上的开发模式和发布模式环境设置

时间:2009-11-16 17:36:40

标签: android development-environment release-management

我正在构建一个Android应用程序,并希望维护一些我可以调整的环境变量,具体取决于我是处于开发模式还是发布模式。例如,我需要调用Web服务,并且在任一模式下URL都会略有不同。我想将此设置和其他设置外部化,以便我可以根据目标部署轻松更改它们。

SDK中是否有任何最佳做法或任何内容可以帮助满足这一需求?

8 个答案:

答案 0 :(得分:44)

以下解决方案假定在清单文件中,您始终在开发时设置android:debuggable=true并在应用程序发布时设置android:debuggable=false

现在,您可以通过查看从ApplicationInfo.FLAG_DEBUGGABLE获得的ApplicationInfo中的PackageManager标记来检查代码中此属性的值。

以下代码段可以提供帮助:

PackageInfo packageInfo = ... // get package info for your context
int flags = packageInfo.applicationInfo.flags; 
if ((flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0) {
    // development mode
} else {
    // release mode
}

答案 1 :(得分:28)

根据此stackoverflow post,在SDK Tools版本17中(我们在撰写本文时已经是19)添加了一个BuildConfig.DEBUG常量,在构建开发构建时也是如此。

答案 2 :(得分:9)

@ viktor-bresan感谢您提供有用的解决方案。如果您只是包含一般方法来检索当前应用程序的上下文以使其成为一个完全可用的示例,那将会更有帮助。下面的内容:

PackageInfo packageInfo = getPackageManager().getPackageInfo(getPackageName(), 0);

答案 3 :(得分:5)

Android build.gradle很好地处理了调试和发布环境。

build.gradle文件

中附加以下代码段
buildTypes {
    debug {
        buildConfigField "Boolean", "IS_DEBUG_MODE", 'true'
    }

    release {
        buildConfigField "Boolean", "IS_DEBUG_MODE", 'false'
    }
}

现在您可以访问如下所示的变量

    if (BuildConfig.IS_DEBUG_MODE) { {
        //Debug mode.
    } else {
        //Release mode
    }

答案 4 :(得分:4)

我会查看isDebuggerConnected

答案 5 :(得分:3)

如下代码之类的东西......

public void onCreate Bundle b ) {
   super.onCreate(savedInstanceState);
   if ( signedWithDebugKey(this,this.getClass()) ) {
     blah blah blah
   }

  blah 
    blah 
      blah

}

static final String DEBUGKEY = 
      "get the debug key from logcat after calling the function below once from the emulator";    


public static boolean signedWithDebugKey(Context context, Class<?> cls) 
{
    boolean result = false;
    try {
        ComponentName comp = new ComponentName(context, cls);
        PackageInfo pinfo = context.getPackageManager().getPackageInfo(comp.getPackageName(),PackageManager.GET_SIGNATURES);
        Signature sigs[] = pinfo.signatures;
        for ( int i = 0; i < sigs.length;i++)
        Log.d(TAG,sigs[i].toCharsString());
        if (DEBUGKEY.equals(sigs[0].toCharsString())) {
            result = true;
            Log.d(TAG,"package has been signed with the debug key");
        } else {
            Log.d(TAG,"package signed with a key other than the debug key");
        }

    } catch (android.content.pm.PackageManager.NameNotFoundException e) {
        return false;
    }

    return result;

} 

答案 6 :(得分:1)

今天偶然发现了另一种看似非常简单的方法。看看Build.TAGS,当为开发创建应用程序时,这将评估为字符串“test-keys”。

比字符串比较更容易。

另外,Build.MODEL和Build.PRODUCT评估模拟器上的字符串“google_sdk”!

答案 7 :(得分:0)

这是我使用的方法:

http://whereblogger.klaki.net/2009/10/choosing-android-maps-api-key-at-run.html

我用它来切换调试日志和地图API密钥。