Skip to content

Commit 8bbc3e5

Browse files
committed
Fixed gitignore and commited missing file
1 parent c5a0624 commit 8bbc3e5

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ captures/
88
*~
99
.weblate
1010
*.class
11-
**/debug/
12-
**/release/
11+
app/debug/
12+
app/release/
1313

1414
# vscode / eclipse files
1515
*.classpath
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.schabi.newpipe.settings;
2+
3+
import android.content.Intent;
4+
5+
import leakcanary.LeakCanary;
6+
7+
@SuppressWarnings("unused") // Class is used but loaded via reflection
8+
public class DebugSettingsBVLeakCanary
9+
implements DebugSettingsFragment.DebugSettingsBVLeakCanaryAPI {
10+
11+
@Override
12+
public Intent getNewLeakDisplayActivityIntent() {
13+
return LeakCanary.INSTANCE.newLeakDisplayActivityIntent();
14+
}
15+
}

0 commit comments

Comments
 (0)