You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my custom IPreprocessBuildWithReport script to auto generate version name and code for building aab. And that has been working fine until I have switched to use Google/Build Android App Bundle... menu that use custom build script
And the code above have been triggered before any PreprocessBuild. Which it would cache a wrong version number to generate a wrong name of symbols file. And I don't know what it has been used anywhere else but if it would it then using wrong version name everywhere after that
But as far as I can see, it seem it only being used at the end just for symbold file. So it has no point to cache it at the start isn't it?. Or could you please at least cache it around prebuildprocessor? So that at least I could change the callback order to be executed my script before google bundle tools
I have my custom
IPreprocessBuildWithReportscript to auto generate version name and code for buildingaab. And that has been working fine until I have switched to useGoogle/Build Android App Bundle...menu that use custom build scriptplay-unity-plugins/GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AppBundleBuilder.cs
Lines 115 to 122 in ef290c7
And the code above have been triggered before any PreprocessBuild. Which it would cache a wrong version number to generate a wrong name of symbols file. And I don't know what it has been used anywhere else but if it would it then using wrong version name everywhere after that
But as far as I can see, it seem it only being used at the end just for symbold file. So it has no point to cache it at the start isn't it?. Or could you please at least cache it around prebuildprocessor? So that at least I could change the callback order to be executed my script before google bundle tools