Skip to content

Commit

Permalink
Fixed gitignore and commited missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
litetex committed Jan 24, 2022
1 parent c5a0624 commit 8bbc3e5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ captures/
*~
.weblate
*.class
**/debug/
**/release/
app/debug/
app/release/

# vscode / eclipse files
*.classpath
Expand Down
Original file line number Diff line number Diff line change
@@ -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();
}
}

0 comments on commit 8bbc3e5

Please sign in to comment.