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 bcaadb2 commit 7998025Copy full SHA for 7998025
firebase-database/CHANGELOG.md
@@ -1,4 +1,8 @@
1
-# Unreleased
+# 18.0.1
2
+- [changed] The SDK now reports the correct version number (via
3
+ `FirebaseDatabase.getSdkVersion()`).
4
+
5
+# 17.0.0
6
- [changed] Added `@RestrictTo` annotations to discourage the use of APIs that
7
are not public. This affects internal APIs that were previously obfuscated
8
and are not mentioned in our documentation.
firebase-database/src/main/java/com/google/firebase/database/FirebaseDatabase.java
@@ -38,7 +38,7 @@
38
@PublicApi
39
public class FirebaseDatabase {
40
41
- private static final String SDK_VERSION = "3.0.0";
+ private static final String SDK_VERSION = BuildConfig.VERSION_NAME;
42
43
private final FirebaseApp app;
44
private final RepoInfo repoInfo;
0 commit comments