We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eed955 commit 33a6bf7Copy full SHA for 33a6bf7
2 files changed
android/app/build.gradle
@@ -82,7 +82,7 @@ android {
82
targetSdkVersion rootProject.ext.targetSdkVersion
83
// applicationId "com.gamepass"
84
// versionCode 1999999999
85
- versionName "2.4.0"
+ versionName "2.4.1"
86
}
87
signingConfigs {
88
debug {
src/pages/Settings.jsx
@@ -425,11 +425,15 @@ function SettingsScreen({navigation}) {
425
/>
426
)}
427
428
- {/* <SettingItem
429
- title={'DEBUG'}
430
- description={'Enter debug'}
431
- onPress={() => handleItemPress('debug')}
432
- /> */}
+ {
+ __DEV__ && (
+ <SettingItem
+ title={'DEBUG'}
+ description={'Enter debug'}
433
+ onPress={() => handleItemPress('debug')}
434
+ />
435
+ )
436
+ }
437
438
<SettingItem
439
title={t('HistoryTitle')}
0 commit comments