File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
fastlane/metadata/android/en-US/changelogs Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
applicationId " com.moimob.drinkable"
8
8
minSdkVersion rootProject. ext. minSdkVersion
9
9
targetSdkVersion rootProject. ext. targetSdkVersion
10
- versionCode 15500
11
- versionName " 1.55 .0"
10
+ versionCode 15600
11
+ versionName " 1.56 .0"
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13
13
aaptOptions {
14
14
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Original file line number Diff line number Diff line change
1
+ • Fix an issue where app does not work on older devices
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export class BackupDrawer {
59
59
. withCocktailInformation ( )
60
60
. withShoppingLists ( ) ;
61
61
62
- const formattedName = this . name . replaceAll ( ' ' , '_' ) ;
62
+ const formattedName = this . name . replace ( / / g , '_' ) ;
63
63
64
64
await Filesystem . writeFile ( {
65
65
path : `${ drinkableBackupsPath } /${ formattedName } .json` ,
Original file line number Diff line number Diff line change 8
8
"emitDecoratorMetadata" : true ,
9
9
"experimentalDecorators" : true ,
10
10
"sourceMap" : true ,
11
- "target" : " es2021 " ,
11
+ "target" : " es6 " ,
12
12
"moduleResolution" : " node" ,
13
13
"baseUrl" : " src" ,
14
14
"allowSyntheticDefaultImports" : true ,
You can’t perform that action at this time.
0 commit comments