标签: android mobile react-native
有没有办法判断Android React-Native应用程序在运行时是否处于“发布模式”?
是否可以判断应用程序是否已签名?
干杯, 麦克
答案 0 :(得分:2)
只检查__DEV__是真还是假
__DEV__
if (__DEV__) { // then development mode } else { // release mode }