File tree Expand file tree Collapse file tree 6 files changed +43
-4
lines changed
src/main/java/com/google/firebase/abt
src/main/java/com/google/firebase/database
firebase-functions/src/main/java/com/google/firebase/functions Expand file tree Collapse file tree 6 files changed +43
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ plugins {
20
20
firebaseLibrary {
21
21
testLab. enabled = false
22
22
publishSources = true
23
- staticAnalysis. disableKotlinInteropLint()
24
23
}
25
24
26
25
// TODO(issue/568): Remove this once legacy logic is removed from Remote Config.
Original file line number Diff line number Diff line change
1
+ // Copyright 2019 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ /** @hide */
16
+ package com .google .firebase .abt .component ;
Original file line number Diff line number Diff line change
1
+ // Copyright 2019 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ /** @hide */
16
+ package com .google .firebase .abt ;
Original file line number Diff line number Diff line change 1
- # Unreleased
1
+ # 18.0.1
2
+ - [ changed] The SDK now reports the correct version number (via
3
+ ` FirebaseDatabase.getSdkVersion() ` ).
4
+
5
+ # 17.0.0
2
6
- [ changed] Added ` @RestrictTo ` annotations to discourage the use of APIs that
3
7
are not public. This affects internal APIs that were previously obfuscated
4
8
and are not mentioned in our documentation.
Original file line number Diff line number Diff line change 36
36
*/
37
37
public class FirebaseDatabase {
38
38
39
- private static final String SDK_VERSION = "3.0.0" ;
39
+ private static final String SDK_VERSION = BuildConfig . VERSION_NAME ;
40
40
41
41
private final FirebaseApp app ;
42
42
private final RepoInfo repoInfo ;
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ public long getTimeout() {
50
50
51
51
/** Creates a new OkHttpClient with these options applied to it. */
52
52
OkHttpClient apply (OkHttpClient client ) {
53
- return client .newBuilder ().callTimeout (timeout , timeoutUnits ).build ();
53
+ return client
54
+ .newBuilder ()
55
+ .callTimeout (timeout , timeoutUnits )
56
+ .readTimeout (timeout , timeoutUnits )
57
+ .build ();
54
58
}
55
59
}
You can’t perform that action at this time.
0 commit comments