标签: react-native
有没有办法确定当前运行的react-native应用程序是否是调试版本?专门针对Android,但希望平台不可知。
答案 0 :(得分:3)
使用DEV标志
if (__DEV__) { console.log('I am in debug'); }