- Adds support for renaming apps: By pressing A or X on the controller, you can choose an alternate app name / icon. You can reset these changes back to default in Settings.
27 lines
483 B
C#
27 lines
483 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class AppEntry : MonoBehaviour
|
|
{
|
|
public GameObject sprite;
|
|
|
|
public string packageId;
|
|
public string appName;
|
|
public string externalIconPath;
|
|
public int installedApkIndex;
|
|
public bool isRenameMode;
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|