Fixed
Status Update
Comments
jr...@google.com <jr...@google.com> #2
I see same issue and have been debugging it.
NOTE: It DOES NOT happen if not using support package, but use android level 14/15 library. I believe Honeycomb works well too.
My current workaround is to provide my own DialogFragment.show() method, like below:
public int show(FragmentTransaction transaction, String tag) {
return show(transaction, tag, false);
}
public int show(FragmentTransaction transaction, String tag, boolean allowStateLoss) {
transaction.add(this, tag);
mRemoved = false;
mBackStackId = allowStateLoss ? transaction.commitAllowingStateLoss() : transaction.commit();
return mBackStackId;
}
NOTE: It DOES NOT happen if not using support package, but use android level 14/15 library. I believe Honeycomb works well too.
My current workaround is to provide my own DialogFragment.show() method, like below:
public int show(FragmentTransaction transaction, String tag) {
return show(transaction, tag, false);
}
public int show(FragmentTransaction transaction, String tag, boolean allowStateLoss) {
transaction.add(this, tag);
mRemoved = false;
mBackStackId = allowStateLoss ? transaction.commitAllowingStateLoss() : transaction.commit();
return mBackStackId;
}
Description
Does this feature request already exist in the tracker? [ ] Yes [X ] No
Identify the developer feature that is most relevant to your feature request: [X] Data API [ ] Admin API [ ] Measurement Protocol [ ] BigQuery Export
Briefly describe the feature request. If end users will interact with this feature, describe the interaction and expected outcome. Hi, would you be able to add DV360 & CM360 dimensions the Data API Core Reporting queries? Some dimensions that would be especially useful are Session DV360 insertion order name, Session DV360 line item name, etc.
(Optional) How does this feature request affect Google Analytics users that use your application. This will provide broaden the reporting scope for DV/CM activity with on-site metrics like engagement rate, sessions.
(Optional) How does this feature request affect Google Analytics developers. Hopefully it will not be difficult to add as SA360 is already present in the API.
(Optional) What alternatives are you/your users using right now instead of the requested feature. It's a manual process of downloading GA4 reports to access these dimensions and they have to be manually tallied.