File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ class IOSProjectService extends projectServiceBaseLib.PlatformProjectServiceBase
182
182
var umbrellaHeader = this . getUmbrellaHeaderFromDynamicFramework ( libraryPath ) . wait ( ) ;
183
183
184
184
let frameworkName = path . basename ( libraryPath , path . extname ( libraryPath ) ) ;
185
- let targetPath = path . join ( "lib" , this . platformData . normalizedPlatformName , frameworkName ) ;
185
+ let targetPath = path . join ( "lib" , this . platformData . normalizedPlatformName ) ;
186
186
let fullTargetPath = path . join ( this . $projectData . projectDir , targetPath ) ;
187
187
this . $fs . ensureDirectoryExists ( fullTargetPath ) . wait ( ) ;
188
188
shell . cp ( "-R" , libraryPath , fullTargetPath ) ;
@@ -273,7 +273,7 @@ class IOSProjectService extends projectServiceBaseLib.PlatformProjectServiceBase
273
273
274
274
private getFrameworkRelativePath ( libraryPath : string ) : string {
275
275
let frameworkName = path . basename ( libraryPath , path . extname ( libraryPath ) ) ;
276
- let targetPath = path . join ( "lib" , this . platformData . normalizedPlatformName , frameworkName ) ;
276
+ let targetPath = path . join ( "lib" , this . platformData . normalizedPlatformName ) ;
277
277
let frameworkPath = path . relative ( "platforms/ios" , path . join ( targetPath , frameworkName + ".framework" ) ) ;
278
278
return frameworkPath ;
279
279
}
You can’t perform that action at this time.
0 commit comments