mirror of
https://github.com/ReVanced/revanced-manager-downloaders.git
synced 2026-01-19 17:33:57 +00:00
Compare commits
3 Commits
v1.1.0-dev
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a5593a792 | ||
|
|
7141d121dd | ||
|
|
f4c91f0455 |
@@ -32,7 +32,7 @@
|
|||||||
{
|
{
|
||||||
"assets": [
|
"assets": [
|
||||||
{
|
{
|
||||||
"path": "downloaders/*/build/outputs/apk/release/*.apk?(.asc)",
|
"path": "downloaders/*/build/outputs/apk/release/revanced-manager-*.apk?(.asc)",
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
successComment: false
|
successComment: false
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
# [1.1.0-dev.8](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.7...v1.1.0-dev.8) (2025-07-08)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Prefixing APKs with `revanced-manager-` ([f4c91f0](https://github.com/ReVanced/revanced-manager-downloaders/commit/f4c91f0455e19e240a1527ff05f8f987fbf8e054))
|
||||||
|
|
||||||
# [1.1.0-dev.7](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.6...v1.1.0-dev.7) (2025-07-08)
|
# [1.1.0-dev.7](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.6...v1.1.0-dev.7) (2025-07-08)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ Follow the steps below to build ReVanced Manager Downloaders:
|
|||||||
> gpr.key = key
|
> gpr.key = key
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
## 📜 Licence
|
## 📜 License
|
||||||
|
|
||||||
This project is licensed under the GPLv3 licence.
|
This project is licensed under the GPLv3 licence.
|
||||||
Please see the [license file](LICENSE) for more information.
|
Please see the [license file](LICENSE) for more information.
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ subprojects {
|
|||||||
applicationVariants.all {
|
applicationVariants.all {
|
||||||
outputs.all {
|
outputs.all {
|
||||||
this as ApkVariantOutputImpl
|
this as ApkVariantOutputImpl
|
||||||
outputFileName = "${project.name}-downloader-$version.apk"
|
outputFileName = "revanced-manager-${project.name}-downloader-$version.apk"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -91,7 +91,7 @@ subprojects {
|
|||||||
tasks.register("assembleReleaseSignApk") {
|
tasks.register("assembleReleaseSignApk") {
|
||||||
dependsOn("assembleRelease")
|
dependsOn("assembleRelease")
|
||||||
|
|
||||||
val apk = layout.buildDirectory.file("outputs/apk/release/${project.name}-downloader-$version.apk")
|
val apk = layout.buildDirectory.file("outputs/apk/release/revanced-manager-${project.name}-downloader-$version.apk")
|
||||||
|
|
||||||
inputs.file(apk).withPropertyName("input")
|
inputs.file(apk).withPropertyName("input")
|
||||||
outputs.file(apk.map { it.asFile.resolveSibling("${it.asFile.name}.asc") })
|
outputs.file(apk.map { it.asFile.resolveSibling("${it.asFile.name}.asc") })
|
||||||
|
|||||||
@@ -21,4 +21,4 @@ kotlin.code.style = official
|
|||||||
# resources declared in the library itself and none from the library's dependencies,
|
# resources declared in the library itself and none from the library's dependencies,
|
||||||
# thereby reducing the size of the R class for that library
|
# thereby reducing the size of the R class for that library
|
||||||
android.nonTransitiveRClass = true
|
android.nonTransitiveRClass = true
|
||||||
version = 1.1.0-dev.7
|
version = 1.1.0-dev.8
|
||||||
|
|||||||
Reference in New Issue
Block a user