mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 05:48:22 +03:00
BraveNewPipeLegacy: BraveApp inherit from MultiDexApplication
This commit is contained in:
parent
4211329c89
commit
228c1d3681
1 changed files with 15 additions and 0 deletions
15
app/src/braveLegacy/java/org/schabi/newpipe/BraveApp.java
Normal file
15
app/src/braveLegacy/java/org/schabi/newpipe/BraveApp.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package org.schabi.newpipe;
|
||||
|
||||
import org.conscrypt.Conscrypt;
|
||||
|
||||
import java.security.Security;
|
||||
|
||||
import androidx.multidex.MultiDexApplication;
|
||||
|
||||
public class BraveApp extends MultiDexApplication {
|
||||
@Override
|
||||
public void onCreate() {
|
||||
super.onCreate();
|
||||
Security.insertProviderAt(Conscrypt.newProvider(), 1);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue