如何判断您是否在运行时以“发布模式”运行

时间:2016-03-01 03:26:57

标签: android mobile react-native

有没有办法判断Android React-Native应用程序在运行时是否处于“发布模式”?

是否可以判断应用程序是否已签名?

干杯, 麦克

1 个答案:

答案 0 :(得分:2)

只检查__DEV__是真还是假

if (__DEV__) {
  // then development mode
} else {
  // release mode
}