Commit cb91561 1 parent 8aefe16 commit cb91561 Copy full SHA for cb91561
File tree 5 files changed +8
-8
lines changed
ios/vshop_mobile.xcodeproj
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ android {
118
118
applicationId " dev.vasc.vshop2"
119
119
minSdkVersion rootProject. ext. minSdkVersion
120
120
targetSdkVersion rootProject. ext. targetSdkVersion
121
- versionCode 53
121
+ versionCode 54
122
122
versionName npmVersion
123
123
}
124
124
Original file line number Diff line number Diff line change 533
533
CODE_SIGN_ENTITLEMENTS = vshop_mobile/vshop_mobile.entitlements;
534
534
CODE_SIGN_IDENTITY = "Apple Development";
535
535
CODE_SIGN_STYLE = Automatic;
536
- CURRENT_PROJECT_VERSION = 18 ;
536
+ CURRENT_PROJECT_VERSION = 19 ;
537
537
DEVELOPMENT_TEAM = H4F94U74J4;
538
538
ENABLE_BITCODE = NO;
539
539
INFOPLIST_FILE = vshop_mobile/Info.plist;
542
542
"$(inherited)",
543
543
"@executable_path/Frameworks",
544
544
);
545
- MARKETING_VERSION = 2.7.3 ;
545
+ MARKETING_VERSION = 2.7.4 ;
546
546
OTHER_LDFLAGS = (
547
547
"$(inherited)",
548
548
"-ObjC",
566
566
CODE_SIGN_ENTITLEMENTS = vshop_mobile/vshop_mobile.entitlements;
567
567
CODE_SIGN_IDENTITY = "Apple Development";
568
568
CODE_SIGN_STYLE = Automatic;
569
- CURRENT_PROJECT_VERSION = 18 ;
569
+ CURRENT_PROJECT_VERSION = 19 ;
570
570
DEVELOPMENT_TEAM = H4F94U74J4;
571
571
INFOPLIST_FILE = vshop_mobile/Info.plist;
572
572
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
573
573
LD_RUNPATH_SEARCH_PATHS = (
574
574
"$(inherited)",
575
575
"@executable_path/Frameworks",
576
576
);
577
- MARKETING_VERSION = 2.7.3 ;
577
+ MARKETING_VERSION = 2.7.4 ;
578
578
OTHER_LDFLAGS = (
579
579
"$(inherited)",
580
580
"-ObjC",
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vshop_mobile" ,
3
- "version" : " 2.7.3 " ,
3
+ "version" : " 2.7.4 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"android" : " react-native run-android" ,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export default function ReAuthScreen() {
46
46
} ) => {
47
47
if ( ! newNavState . url ) return ;
48
48
49
- if ( newNavState . url . startsWith ( "https://playvalorant.com/opt_in ") ) {
49
+ if ( newNavState . url . includes ( "access_token= ") ) {
50
50
const accessToken = getAccessTokenFromUri ( newNavState . url ) ;
51
51
try {
52
52
const region =
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default function WizardScreen() {
53
53
} ) => {
54
54
if ( ! newNavState . url ) return ;
55
55
56
- if ( newNavState . url . startsWith ( "https://playvalorant.com/opt_in ") ) {
56
+ if ( newNavState . url . includes ( "access_token= ") ) {
57
57
const accessToken = getAccessTokenFromUri ( newNavState . url ) ;
58
58
try {
59
59
setLoading ( t ( "fetching.version" ) ) ;
You can’t perform that action at this time.
0 commit comments