AI-generated Key Takeaways
-
AppSetIdInfo
provides information about an app set ID, including its value and scope. -
The scope of an app set ID can be either app-specific (
SCOPE_APP
) or developer-specific (SCOPE_DEVELOPER
). -
You can retrieve the app set ID using
getId()
and its scope usinggetScope()
.
Contains information about app set ID.
Nested Class Summary
@interface | AppSetIdInfo.Scope | Allowed constants for AppSetIdInfo.getScope() . |
Constant Summary
int | SCOPE_APP | The app set ID is scoped to the app. |
int | SCOPE_DEVELOPER | The app set ID is scoped to a developer account on an app store. |
Public Method Summary
String |
getId()
Gets the app set ID.
|
int |
getScope()
Returns the
AppSetIdInfo.Scope
of the app set ID.
|
Inherited Method Summary
Constants
public static final int SCOPE_APP
The app set ID is scoped to the app.
public static final int SCOPE_DEVELOPER
The app set ID is scoped to a developer account on an app store. All apps from the same developer on a device will have the same developer scoped app set ID.
Public Methods
public String getId ()
Gets the app set ID.
Returns
- the app set ID.
public int getScope ()
Returns the AppSetIdInfo.Scope
of the app set ID. Possible values include SCOPE_APP
and SCOPE_DEVELOPER
.
Returns
- the app set ID's
AppSetIdInfo.Scope
.