@@ -759,7 +759,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
759
759
760
760
private getInfoPlistPath ( projectData : IProjectData ) : string {
761
761
return path . join (
762
- projectData . getAppResourcesDirectoryPath ( ) ,
762
+ projectData . appResourcesDirectoryPath ,
763
763
this . getPlatformData ( projectData ) . normalizedPlatformName ,
764
764
this . getPlatformData ( projectData ) . configurationFileName
765
765
) ;
@@ -779,7 +779,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
779
779
780
780
private async mergeInfoPlists ( buildOptions : IRelease , projectData : IProjectData ) : Promise < void > {
781
781
const projectDir = projectData . projectDir ;
782
- const infoPlistPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
782
+ const infoPlistPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
783
783
this . ensureConfigurationFileInAppResources ( ) ;
784
784
785
785
if ( ! this . $fs . exists ( infoPlistPath ) ) {
@@ -1209,7 +1209,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1209
1209
}
1210
1210
}
1211
1211
1212
- const appResourcesXcconfigPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1212
+ const appResourcesXcconfigPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1213
1213
if ( this . $fs . exists ( appResourcesXcconfigPath ) ) {
1214
1214
await this . mergeXcconfigFiles ( appResourcesXcconfigPath , pluginsXcconfigFilePath ) ;
1215
1215
}
@@ -1264,7 +1264,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1264
1264
}
1265
1265
1266
1266
private getBuildXCConfigFilePath ( projectData : IProjectData ) : string {
1267
- const buildXCConfig = path . join ( projectData . getAppResourcesDirectoryPath ( ) ,
1267
+ const buildXCConfig = path . join ( projectData . appResourcesDirectoryPath ,
1268
1268
this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1269
1269
return buildXCConfig ;
1270
1270
}
@@ -1326,7 +1326,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1326
1326
const choicePersist = await this . $prompter . promptForChoice ( "Do you want to make teamId: " + teamId + " a persistent choice for your app?" , choicesPersist ) ;
1327
1327
switch ( choicesPersist . indexOf ( choicePersist ) ) {
1328
1328
case 0 :
1329
- const xcconfigFile = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1329
+ const xcconfigFile = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1330
1330
this . $fs . appendFile ( xcconfigFile , "\nDEVELOPMENT_TEAM = " + teamId + "\n" ) ;
1331
1331
break ;
1332
1332
case 1 :
@@ -1344,7 +1344,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1344
1344
}
1345
1345
1346
1346
private validateApplicationIdentifier ( projectData : IProjectData ) : void {
1347
- const infoPlistPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
1347
+ const infoPlistPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
1348
1348
const mergedPlistPath = this . getPlatformData ( projectData ) . configurationFilePath ;
1349
1349
1350
1350
if ( ! this . $fs . exists ( infoPlistPath ) || ! this . $fs . exists ( mergedPlistPath ) ) {
0 commit comments