@@ -686,11 +686,7 @@ extension Settings {
686686 base: SettingsDictionary ( )
687687 . swiftVersion ( " 6.0 " )
688688 . otherSwiftFlags ( . longTypeCheckingFlags)
689- . enableL10nGeneration ( )
690- . manualCodeSigning (
691- identity: " Apple Development " ,
692- provisioningProfileSpecifier: " match Development com.subvert.forpda "
693- ) ,
689+ . enableL10nGeneration ( ) ,
694690 configurations: [
695691 . debug( name: " Debug " , xcconfig: " Configs/App.xcconfig " ) ,
696692 . release( name: " Release " , settings: . init( ) . enableDsym ( ) , xcconfig: " Configs/App.xcconfig " ) ,
@@ -705,11 +701,16 @@ extension SettingsDictionary {
705701 . setAppName ( App . name)
706702 . setDevelopmentTeam ( " 7353CQCGQC " )
707703 . includeAppIcon ( )
704+ . manualCodeSigning (
705+ identity: " Apple Development " ,
706+ provisioningProfileSpecifier: " match Development com.subvert.forpda "
707+ )
708708
709709 static let targetSettings = SettingsDictionary ( )
710710 . useIPhoneAsSingleDestination ( )
711711 . disableAssetGeneration ( )
712712 . excludeAppIcon ( )
713+ . disableCodeSigning ( )
713714}
714715
715716extension Dictionary where Key == String , Value == SettingValue {
@@ -733,6 +734,11 @@ extension Dictionary where Key == String, Value == SettingValue {
733734 return merging ( [ " ASSETCATALOG_COMPILER_APPICON_NAME " : . string( " " ) ] )
734735 }
735736
737+ func disableCodeSigning( ) -> SettingsDictionary {
738+ return merging ( [ " CODE_SIGNING_ALLOWED " : . string( " NO " ) ] )
739+ . manualCodeSigning ( identity: nil , provisioningProfileSpecifier: nil )
740+ }
741+
736742 func useIPhoneAsSingleDestination( ) -> SettingsDictionary {
737743 return merging ( [
738744 " TARGETED_DEVICE_FAMILY " : " 1 " ,
0 commit comments