WAI
Status Update
Comments
ch...@google.com <ch...@google.com>
ni...@gmail.com <ni...@gmail.com> #2
The G-suite documentation[1] provides this information, but I have submitted a feature request to make it clear on the Cloud DNS public documentation and the Cloud Console. However, I can't provide you with an ETA or guarantee the implementation of this feature, but rest assured that Google strives on improving its products and that your feedback helps us do just that.
Any future updates to this feature will be posted here.
[1]https://support.google.com/a/answer/173535
Any future updates to this feature will be posted here.
[1]
ni...@gmail.com <ni...@gmail.com> #3
Any updates on this?
ch...@google.com <ch...@google.com>
[Deleted User] <[Deleted User]> #4
Ditto. This is a frustrating one.
di...@gmail.com <di...@gmail.com> #5
This hit me too. At the very least, the error message returned by the API could explain what is wrong: that the string can't be longer than 255 characters.
so...@gmail.com <so...@gmail.com> #6
This is indeed extremely frustrating.
ch...@google.com <ch...@google.com>
so...@gmail.com <so...@gmail.com> #7
Cloud DNS upon emitting multiple TXT lines seems to re-order them. Even if you managed to enter a TXT record using multiple lines, this will render the entry unusable.
For example, this won't be recognized as a valid DKIM entry:
"DNDIed6Ys/R3J2QzhK/sEnJ+K/K4uD1yIuvK/6tzcgGcSKKFJ9Ffr/1x44eXjLXsfy9n8evvljnWwFe/U2tAtUuK7olU3CXWZGbNir5gwBbU8gE1UuVLqeW8xJgk+fj6+SMTXejvGpvcy4dsHtHNLSwIDAQAB"
"v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjOLvrcvHRt8Uzqmq94BEYYyuqziuMcQCG7xIMdm/AMOmpwec6xI0craHP/9g4pfdpgiTzFgYXaAu/Y9bKomEj1dRsmvSkOEX17p89h0w5yLxEru7MsLhdVJ26JvnQeSWY/aet5nOqhH15DrjTfETGenHYDXt/sE80sfkkDdyRUuGZyC92odpMaaE6fwkxXa"
… which makes it quite severe.
For example, this won't be recognized as a valid DKIM entry:
"DNDIed6Ys/R3J2QzhK/sEnJ+K/K4uD1yIuvK/6tzcgGcSKKFJ9Ffr/1x44eXjLXsfy9n8evvljnWwFe/U2tAtUuK7olU3CXWZGbNir5gwBbU8gE1UuVLqeW8xJgk+fj6+SMTXejvGpvcy4dsHtHNLSwIDAQAB"
"v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjOLvrcvHRt8Uzqmq94BEYYyuqziuMcQCG7xIMdm/AMOmpwec6xI0craHP/9g4pfdpgiTzFgYXaAu/Y9bKomEj1dRsmvSkOEX17p89h0w5yLxEru7MsLhdVJ26JvnQeSWY/aet5nOqhH15DrjTfETGenHYDXt/sE80sfkkDdyRUuGZyC92odpMaaE6fwkxXa"
… which makes it quite severe.
Description
Because ActionMode changes status bar color to black, I am setting color of the status bar of my app to my theme color on onPrepareActionMode and setting it transparent on onDestroyActionMode so that navigationdrawer would look like it is under the status bar with
@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getActivity().getWindow().setStatusBarColor(getResources().getColor(R.color.appColorPrimaryDark));
}
return true;
}
@Override
public void onDestroyActionMode(ActionMode mode) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getActivity().getWindow().setStatusBarColor(getResources().getColor(android.R.color.transparent));
}
mActionMode = null;
}
This works fine with any version below 23 but i see a black status bar just before it goes back to transparent on v 23