We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e566d9 commit 85272b6Copy full SHA for 85272b6
transport/transport-runtime/src/main/java/com/google/android/datatransport/runtime/logging/Logging.java
@@ -24,7 +24,7 @@ public final class Logging {
24
private Logging() {}
25
26
private static String getTag(String tag) {
27
- if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.N) return concatTag(LOG_PREFIX, tag);
+ if (android.os.Build.VERSION.SDK_INT <= Build.VERSION_CODES.N_MR1) return concatTag(LOG_PREFIX, tag);
28
29
return LOG_PREFIX + tag;
30
}
0 commit comments