File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -2251,6 +2251,10 @@ int main (int argc, char* argv[]) {
2251
2251
settings[" arch" ] = replace (platform.arch , " x86_64" , " amd64" );
2252
2252
}
2253
2253
2254
+ if (settings[" meta_copyright" ].empty ()) {
2255
+ settings[" meta_copyright" ] = " (c) " + settings[" meta_title" ] + " 2025" ;
2256
+ }
2257
+
2254
2258
subcommandHandler (optionsAndEnv.optionsWithValue , optionsAndEnv.optionsWithoutValue );
2255
2259
}
2256
2260
};
@@ -4829,6 +4833,19 @@ int main (int argc, char* argv[]) {
4829
4833
}
4830
4834
}
4831
4835
4836
+ if (settings[" ios_category" ].empty ()) {
4837
+ settings[" ios_category" ] = " public.app-category.developer-tools" ;
4838
+ }
4839
+
4840
+ if (settings[" ios_protocol" ].empty ()) {
4841
+ settings[" ios_protocol" ] = settings[" meta_application_protocol" ];
4842
+ }
4843
+
4844
+ xCodeProjectVariables[" ios_project_version" ] = settings[" ios_project_version" ];
4845
+ xCodeProjectVariables[" ios_deployment_target" ] = settings[" ios_deployment_target" ];
4846
+ xCodeProjectVariables[" ios_category" ] = settings[" ios_category" ];
4847
+ xCodeProjectVariables[" ios_protocol" ] = settings[" ios_protocol" ];
4848
+
4832
4849
writeFile (paths.platformSpecificOutputPath / " exportOptions.plist" , tmpl (gXCodeExportOptions , settings));
4833
4850
writeFile (paths.platformSpecificOutputPath / " Info.plist" , tmpl (gIOSInfoPList , settings));
4834
4851
writeFile (pathToProject / " project.pbxproj" , tmpl (gXCodeProject , xCodeProjectVariables));
You can’t perform that action at this time.
0 commit comments