mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 05:48:22 +03:00
BraveNewPipe: move conscrypt dependencies to braveConscrypt flavor and update to 2.5.2
This commit is contained in:
parent
89a366856a
commit
2aeb429ce9
2 changed files with 8 additions and 3 deletions
|
@ -90,6 +90,10 @@ android {
|
|||
versionCode defaultConfig.versionCode + braveVersionCode
|
||||
versionName "${defaultConfig.versionName}-${braveVersionName}"
|
||||
android.sourceSets.braveConscrypt.res.srcDirs = android.sourceSets.brave.res.srcDirs
|
||||
|
||||
dependencies {
|
||||
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -316,9 +320,6 @@ dependencies {
|
|||
// Date and time formatting
|
||||
implementation "org.ocpsoft.prettytime:prettytime:5.0.6.Final"
|
||||
|
||||
// conscrypt libraries
|
||||
braveConscryptImplementation 'org.conscrypt:conscrypt-android:2.4.0'
|
||||
|
||||
/** Debugging **/
|
||||
// Memory leak detection
|
||||
debugImplementation "com.squareup.leakcanary:leakcanary-object-watcher-android:${leakCanaryVersion}"
|
||||
|
|
4
app/proguard-rules.pro
vendored
4
app/proguard-rules.pro
vendored
|
@ -35,3 +35,7 @@
|
|||
|
||||
## For some reason NotificationModeConfigFragment wasn't kept (only referenced in a preference xml)
|
||||
-keep class org.schabi.newpipe.settings.notifications.** { *; }
|
||||
|
||||
# conscrypt rules (where not needed on 2.4.0)
|
||||
-dontwarn com.android.org.conscrypt.SSLParametersImpl
|
||||
-dontwarn org.apache.harmony.xnet.provider.jsse.SSLParametersImpl
|
||||
|
|
Loading…
Add table
Reference in a new issue