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
This tracker is used for collecting Feature Requests for Google Analytics developer features including Data API, Admin API, Measurement Protocol, and BigQuery Export.
Your submitted issue will be closed without further interaction if you submit: A bug report. A feature request for the GA UI. Any general question around GA UI or developer features. A feature request without all the requested information below.
First, search if your feature request already exists in the tracker. If it does, +1 it and add additional information as a comment. If it does not, proceed with creating a new issue.
While we intend to take developer feedback into consideration, you should not expect direct engagement from us on this tracker. Neither should you expect all feature requests to be accepted.
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 [X ] BigQuery Export
Briefly describe the feature request. If end users will interact with this feature, describe the interaction and expected outcome.
As a user, I am trying to backfill historical data for GA4. Neither Big query export has that option nor the Data/ Reporting API provide more granular data to consume event level or user level data
(Optional) How does this feature request affect Google Analytics users that use your application.
Currently, Its impossible to build datasets for historical data apart from using API based on predefined dimensions and metrics, Also, there is limitation on number of metrics and dimensions in API which is 10 and 9.
(Optional) How does this feature request affect Google Analytics developers.
(Optional) What alternatives are you/your users using right now instead of the requested feature.
(Optional) If this feature request is not implemented, how would you address the issue at hand.
We are paralyzed from using the GA4 historical data effectively for more granular level to build relationships and analytics that drive decisions