# installerName

> Returns the name of the store or package that installed the application (Read Only).

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static string installerName { get; }
```

### Remarks

**iOS**: Returns `Apple Store`.

**Android**: Returns the package name of the app that installed the application (for example, `com.android.vending` for Google Play Store). This is not a localized or human-readable store name. The value might be empty or `null` if Unity can't determine the installer (for example, side-loaded installs).

**Other** **platforms**: Returns an empty string.
