Skip to content

Commit aa26945

Browse files
authored
Merge branch 'TeamNewPipe:dev' into dev
2 parents 7e4ecf0 + 0cdf40c commit aa26945

File tree

267 files changed

+3144
-3376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+3144
-3376
lines changed

app/build.gradle.kts

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ configure<ApplicationExtension> {
7979
resValue("string", "app_name", "NewPipe $suffix")
8080
}
8181
isMinifyEnabled = true
82-
isShrinkResources = false // disabled to fix F-Droid"s reproducible build
82+
isShrinkResources = true
8383
proguardFiles(
8484
getDefaultProguardFile("proguard-android-optimize.txt"),
8585
"proguard-rules.pro"
@@ -88,13 +88,9 @@ configure<ApplicationExtension> {
8888
}
8989

9090
lint {
91-
checkReleaseBuilds = false
92-
// Or, if you prefer, you can continue to check for errors in release builds,
93-
// but continue the build even when errors are found:
91+
lintConfig = file("lint.xml")
92+
// Continue the debug build even when errors are found
9493
abortOnError = false
95-
// suppress false warning ("Resource IDs will be non-final in Android Gradle Plugin version
96-
// 5.0, avoid using them in switch case statements"), which affects only library projects
97-
disable += "NonConstantResourceId"
9894
}
9995

10096
compileOptions {
@@ -276,7 +272,8 @@ dependencies {
276272
implementation(libs.lisawray.groupie.viewbinding)
277273

278274
// Image loading
279-
implementation(libs.squareup.picasso)
275+
implementation(libs.coil.compose)
276+
implementation(libs.coil.network.okhttp)
280277

281278
// Markdown library for Android
282279
implementation(libs.noties.markwon.core)

app/lint.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ SPDX-FileCopyrightText: 2026 NewPipe e.V. <https://newpipe-ev.de>
4+
~ SPDX-License-Identifier: GPL-3.0-or-later
5+
-->
6+
<lint>
7+
<issue id="MissingTranslation" severity="ignore" />
8+
<issue id="MissingQuantity" severity="ignore" />
9+
<issue id="ImpliedQuantity" severity="ignore" />
10+
</lint>

app/src/main/java/org/schabi/newpipe/App.java

Lines changed: 0 additions & 285 deletions
This file was deleted.

0 commit comments

Comments
 (0)