Exemplo n.º 1
0
        public override bool PrepTargetForDeployment(UEBuildTarget InTarget)
        {
            // we need to strip architecture from any of the output paths
            string BaseSoName = AndroidToolChain.RemoveArchName(InTarget.OutputPaths[0]);

            // this always makes a merged .apk since for debugging, there's no way to know which one to run
            MakeApk(InTarget.AppName, InTarget.ProjectDirectory, BaseSoName, BuildConfiguration.RelativeEnginePath, bForDistribution: false, CookFlavor: "", bMakeSeparateApks: false);
            return(true);
        }