From f4debfca323edf473ef30a2ac64d526966c37bed Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Fri, 13 Jan 2023 17:11:13 -0800 Subject: [PATCH] Update AssetsDownloader.cs --- Assets/Scripts/AssetsDownloader.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/AssetsDownloader.cs b/Assets/Scripts/AssetsDownloader.cs index 0e7c151..7cf44bc 100644 --- a/Assets/Scripts/AssetsDownloader.cs +++ b/Assets/Scripts/AssetsDownloader.cs @@ -14,7 +14,9 @@ using Newtonsoft.Json.Linq; namespace QuestAppLauncher { - private bool installApp(string apkPath) + public class InstallAPK + { + private bool installApp(string apkPath) { bool success = true; //GameObject.Find("TextDebug").GetComponent().text = "Installing App"; @@ -60,6 +62,7 @@ namespace QuestAppLauncher return success; } + } /// /// Downloads assets (app icons packs and names files) from configured repos. ///