Putting an Apk into the excluded list won't auto-refresh now (was annoying to always get a refresh when scrolling); Added a refresh button; added a delete button that resets the whole file;

This commit is contained in:
weathon
2019-07-18 17:40:24 +02:00
parent 2740bf207c
commit 94257ee4f8
8 changed files with 952 additions and 4 deletions
+19
View File
@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class ButtonHandler : MonoBehaviour
{
public void RefreshScene()
{
Debug.Log("Scene refreshed");
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
}
public void DeleteExcludedApksFile()
{
Debug.Log("Delete Excluded Apk List");
QuestAppLauncher.GridPopulation.DeleteExcludedApksFile();
}
}