Add support for separate native and managed code in packaged build

This commit is contained in:
Damian Korczowski
2021-07-03 19:12:23 +02:00
parent 2556edb8d3
commit 85398cbf3d
9 changed files with 42 additions and 28 deletions

View File

@@ -105,7 +105,8 @@ void AndroidPlatformTools::OnBuildStarted(CookingData& data)
{
// Adjust the cooking output folder to be located inside the Gradle assets directory
data.DataOutputPath /= TEXT("app/assets");
data.CodeOutputPath /= TEXT("app/assets");
data.NativeCodeOutputPath /= TEXT("app/assets");
data.ManagedCodeOutputPath /= TEXT("app/assets");
PlatformTools::OnBuildStarted(data);
}