Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add debug geography for US states and other regions. Deprecate debug geography for Non EEA region. #3482

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Google Mobile Ads Unity Plugin Change Log

**************
Version Next
**************

- Added debug geography for US states (`DebugGeography.RegulatedUSState`) and other regions (`DebugGeography.Other`).
- Deprecated `DebugGeography.NotEEA`. Use `DebugGeography.Other`.

**************
Version 9.2.0
**************
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,20 @@ public enum DebugGeography
EEA = 1,

/// <summary>
/// Geography appears as not in EEA for debug devices.
/// Geography appears as not in EEA for debug devices.
/// @deprecated Use @ref DebugGeography.Other instead.
/// </summary>
[System.Obsolete("Deprecated. Use DebugGeography.Other instead.")]
NotEEA = 2,

/// <summary>
/// Geography appears as in a regulated US State for debug devices.
/// </summary>
RegulatedUSState = 3,

/// <summary>
/// Geography appears as in a region with no regulation in force.
/// </summary>
Other = 4,
}
}