File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -152,8 +152,8 @@ android {
152
152
applicationId " io.lisk.mobile"
153
153
minSdkVersion rootProject. ext. minSdkVersion
154
154
targetSdkVersion rootProject. ext. targetSdkVersion
155
- versionCode 67
156
- versionName " 2.1.0 "
155
+ versionCode 80
156
+ versionName " 2.1.2 "
157
157
missingDimensionStrategy ' react-native-camera' , ' mlkit'
158
158
multiDexEnabled true
159
159
}
Original file line number Diff line number Diff line change 867
867
buildSettings = {
868
868
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
869
869
CLANG_ENABLE_MODULES = YES;
870
- CURRENT_PROJECT_VERSION = 2 ;
870
+ CURRENT_PROJECT_VERSION = 6 ;
871
871
DEVELOPMENT_TEAM = 58UK9RE9TP;
872
872
ENABLE_BITCODE = NO;
873
873
INFOPLIST_FILE = Lisk/Info.plist;
894
894
buildSettings = {
895
895
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
896
896
CLANG_ENABLE_MODULES = YES;
897
- CURRENT_PROJECT_VERSION = 2 ;
897
+ CURRENT_PROJECT_VERSION = 6 ;
898
898
DEVELOPMENT_TEAM = 58UK9RE9TP;
899
899
INFOPLIST_FILE = Lisk/Info.plist;
900
900
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Lisk" ,
3
- "version" : " 2.1.0 " ,
3
+ "version" : " 2.1.2 " ,
4
4
"description" : " The Lisk official mobile wallet" ,
5
5
"homepage" : " https://github.com/LiskHQ/lisk-mobile" ,
6
6
"bugs" : " https://github.com/LiskHQ/lisk-mobile/issues" ,
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import styles from './styles';
24
24
)
25
25
class Intro extends React . Component {
26
26
skip ( ) {
27
- AsyncStorage . setItem ( '@lisk-mobile-intro' , 'true' ) ;
28
- this . props . navigation . navigate ( 'SignIn' , { signOut : true } ) ;
27
+ AsyncStorage . setItem ( '@lisk-mobile-intro' , 'true' ) ;
28
+ this . props . navigation . navigate ( 'SignIn' , { signOut : true } ) ;
29
29
}
30
30
31
31
componentDidMount ( ) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const fallback = (settings) => {
29
29
? settings . currency
30
30
: currencyKeys [ 0 ] ;
31
31
32
- settings . token . active = tokenKeys [ 0 ]
32
+ settings . token . active = tokenKeys [ 0 ] ;
33
33
return settings ;
34
34
} ;
35
35
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const fullWordsList = Lisk.passphrase.Mnemonic.wordlists.EN;
31
31
* {String} message - A descriptive message for what went wrong
32
32
*/
33
33
export const validatePassphrase = passphrase => {
34
- const trimmedPassphrase = passphrase ?. trim ?. ( ) || ''
34
+ const trimmedPassphrase = passphrase ?. trim ?. ( ) || '' ;
35
35
if ( trimmedPassphrase . length === 0 ) {
36
36
return [ { code : 'empty_value' , message : 'Invalid Passphrase' } ] ;
37
37
}
You can’t perform that action at this time.
0 commit comments