File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,6 @@ export class IOSEntitlementsService {
46
46
} ) ;
47
47
} ;
48
48
49
- // Start with a default empty entitlements file.
50
- session . patch ( {
51
- name : "Default entitlements file" ,
52
- read : ( ) =>
53
- `<?xml version="1.0" encoding="UTF-8"?>
54
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
55
- <plist version="1.0">
56
- </plist>`
57
- } ) ;
58
-
59
49
let allPlugins = await this . getAllInstalledPlugins ( projectData ) ;
60
50
for ( let plugin of allPlugins ) {
61
51
let pluginInfoPlistPath = path . join ( plugin . pluginPlatformsFolderPath ( constants . IOS_PLATFORM_NAME ) , this . getDefaultEntitlementsName ( ) ) ;
@@ -74,13 +64,6 @@ export class IOSEntitlementsService {
74
64
return ;
75
65
}
76
66
77
- public async patchXcconfigFile ( projectData : IProjectData ) {
78
- //CODE_SIGN_ENTITLEMENTS = fgomobile/fgomobile.entitlements
79
- //let entitlementsRelativePath = path.join(projectData.projectName, projectData.projectName + ".entitlements");
80
-
81
- return ;
82
- }
83
-
84
67
private getAllInstalledPlugins ( projectData : IProjectData ) : Promise < IPluginData [ ] > {
85
68
return ( < IPluginsService > this . $injector . resolve ( "pluginsService" ) ) . getAllInstalledPlugins ( projectData ) ;
86
69
}
You can’t perform that action at this time.
0 commit comments