Fixed gitignore and commited missing file

pull/7586/head
litetex 2021-12-29 22:17:30 +01:00
rodzic c5a06243a6
commit 8bbc3e531c
2 zmienionych plików z 17 dodań i 2 usunięć

4
.gitignore vendored
Wyświetl plik

@ -8,8 +8,8 @@ captures/
*~
.weblate
*.class
**/debug/
**/release/
app/debug/
app/release/
# vscode / eclipse files
*.classpath

Wyświetl plik

@ -0,0 +1,15 @@
package org.schabi.newpipe.settings;
import android.content.Intent;
import leakcanary.LeakCanary;
@SuppressWarnings("unused") // Class is used but loaded via reflection
public class DebugSettingsBVLeakCanary
implements DebugSettingsFragment.DebugSettingsBVLeakCanaryAPI {
@Override
public Intent getNewLeakDisplayActivityIntent() {
return LeakCanary.INSTANCE.newLeakDisplayActivityIntent();
}
}