Why There Is Another Application Called Leaks Installed On The Android Device When I Use ZXing Bar Code Library ?
I have an application that uses ZXing Barcode Scanner library, but when I run the application on the device, there is another additional application installed called 'Leaks'. Why i
Solution 1:
It's an application called leak canary.
// For development purposes only
// https://github.com/square/leakcanary
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
Remove these lines from build.gradle file if you have them.
You should also have this line LeakCanary.install(this);
in your activity file and you should remove it as well.
Solution 2:
in your activity file remove the line
LeakCanary.install(this);
Post a Comment for "Why There Is Another Application Called Leaks Installed On The Android Device When I Use ZXing Bar Code Library ?"