@@ -765,7 +765,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
765765
766766 private getInfoPlistPath ( projectData : IProjectData ) : string {
767767 return path . join (
768- projectData . getAppResourcesDirectoryPath ( ) ,
768+ projectData . appResourcesDirectoryPath ,
769769 this . getPlatformData ( projectData ) . normalizedPlatformName ,
770770 this . getPlatformData ( projectData ) . configurationFileName
771771 ) ;
@@ -785,7 +785,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
785785
786786 private async mergeInfoPlists ( buildOptions : IRelease , projectData : IProjectData ) : Promise < void > {
787787 const projectDir = projectData . projectDir ;
788- const infoPlistPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
788+ const infoPlistPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
789789 this . ensureConfigurationFileInAppResources ( ) ;
790790
791791 if ( ! this . $fs . exists ( infoPlistPath ) ) {
@@ -1215,7 +1215,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
12151215 }
12161216 }
12171217
1218- const appResourcesXcconfigPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1218+ const appResourcesXcconfigPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
12191219 if ( this . $fs . exists ( appResourcesXcconfigPath ) ) {
12201220 await this . mergeXcconfigFiles ( appResourcesXcconfigPath , pluginsXcconfigFilePath ) ;
12211221 }
@@ -1270,7 +1270,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
12701270 }
12711271
12721272 private getBuildXCConfigFilePath ( projectData : IProjectData ) : string {
1273- const buildXCConfig = path . join ( projectData . getAppResourcesDirectoryPath ( ) ,
1273+ const buildXCConfig = path . join ( projectData . appResourcesDirectoryPath ,
12741274 this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
12751275 return buildXCConfig ;
12761276 }
@@ -1332,7 +1332,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
13321332 const choicePersist = await this . $prompter . promptForChoice ( "Do you want to make teamId: " + teamId + " a persistent choice for your app?" , choicesPersist ) ;
13331333 switch ( choicesPersist . indexOf ( choicePersist ) ) {
13341334 case 0 :
1335- const xcconfigFile = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
1335+ const xcconfigFile = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , "build.xcconfig" ) ;
13361336 this . $fs . appendFile ( xcconfigFile , "\nDEVELOPMENT_TEAM = " + teamId + "\n" ) ;
13371337 break ;
13381338 case 1 :
@@ -1350,7 +1350,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
13501350 }
13511351
13521352 private validateApplicationIdentifier ( projectData : IProjectData ) : void {
1353- const infoPlistPath = path . join ( projectData . getAppResourcesDirectoryPath ( ) , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
1353+ const infoPlistPath = path . join ( projectData . appResourcesDirectoryPath , this . getPlatformData ( projectData ) . normalizedPlatformName , this . getPlatformData ( projectData ) . configurationFileName ) ;
13541354 const mergedPlistPath = this . getPlatformData ( projectData ) . configurationFilePath ;
13551355
13561356 if ( ! this . $fs . exists ( infoPlistPath ) || ! this . $fs . exists ( mergedPlistPath ) ) {
0 commit comments