File tree 3 files changed +1
-16
lines changed
src/main/java/com/firebase/uidemo
3 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,6 @@ dependencies {
95
95
implementation(Config .Libs .Misc .permissions)
96
96
implementation(Config .Libs .Androidx .constraint)
97
97
debugImplementation(Config .Libs .Misc .leakCanary)
98
- debugImplementation(Config .Libs .Misc .leakCanaryFragments)
99
- releaseImplementation(Config .Libs .Misc .leakCanaryNoop)
100
- testImplementation(Config .Libs .Misc .leakCanaryNoop)
101
98
}
102
99
103
100
apply (plugin = " com.google.gms.google-services" )
Original file line number Diff line number Diff line change 1
1
package com .firebase .uidemo ;
2
2
3
- import com .squareup .leakcanary .LeakCanary ;
4
-
5
3
import androidx .appcompat .app .AppCompatDelegate ;
6
4
import androidx .multidex .MultiDexApplication ;
7
5
@@ -13,11 +11,5 @@ public class FirebaseUIDemo extends MultiDexApplication {
13
11
@ Override
14
12
public void onCreate () {
15
13
super .onCreate ();
16
- if (LeakCanary .isInAnalyzerProcess (this )) {
17
- // This process is dedicated to LeakCanary for heap analysis.
18
- // You should not init your app in this process.
19
- return ;
20
- }
21
- LeakCanary .install (this );
22
14
}
23
15
}
Original file line number Diff line number Diff line change @@ -61,14 +61,10 @@ object Config {
61
61
}
62
62
63
63
object Misc {
64
- private const val leakCanaryVersion = " 1.6.1 "
64
+ private const val leakCanaryVersion = " 2.14 "
65
65
private const val glideVersion = " 4.11.0"
66
66
67
67
const val leakCanary = " com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion "
68
- const val leakCanaryFragments =
69
- " com.squareup.leakcanary:leakcanary-support-fragment:$leakCanaryVersion "
70
- const val leakCanaryNoop =
71
- " com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion "
72
68
73
69
const val glide = " com.github.bumptech.glide:glide:$glideVersion "
74
70
const val glideCompiler = " com.github.bumptech.glide:compiler:$glideVersion "
You can’t perform that action at this time.
0 commit comments