From 06626b781a810270de1d47e199ccb083b084d43e Mon Sep 17 00:00:00 2001 From: huyfei Date: Thu, 22 Feb 2024 18:30:19 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E5=AE=8C=E5=96=84=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E5=92=8C=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruConsent/Editor/PostBuildProcess/PostBuild.DMA.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Runtime/GuruConsent/Editor/PostBuildProcess/PostBuild.DMA.cs b/Runtime/GuruConsent/Editor/PostBuildProcess/PostBuild.DMA.cs index 7eb78f8..8197c1f 100644 --- a/Runtime/GuruConsent/Editor/PostBuildProcess/PostBuild.DMA.cs +++ b/Runtime/GuruConsent/Editor/PostBuildProcess/PostBuild.DMA.cs @@ -19,7 +19,7 @@ namespace Guru.Editor // TODO: add your code here if (target == BuildTarget.Android) { - dir = $"{buildPath}/src/main"; + dir = $"{buildPath}/unityLibrary/src/main"; OnSetAndroidManifest(dir); } else if (target == BuildTarget.iOS) @@ -108,6 +108,7 @@ namespace Guru.Editor } doc.Save(filePath); + Debug.Log($"[Post] inject AndroidManifest.xml at {filePath} success."); } }