Skip to content

Commit

Permalink
Upgrade booster version to 4.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonlee committed Oct 9, 2023
1 parent 86b7161 commit 507b637
Show file tree
Hide file tree
Showing 40 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion docs/en/architecture/aapt2-output-reversing.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ fun runAapt2(project: Project, aapt2: String, args: List<String>) {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
dependencies {
classpath "com.didiglobal.booster:booster-gradle-plugin:$booster_version"
Expand Down
4 changes: 2 additions & 2 deletions docs/en/developer/first-class-transformer.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Source package (default: BoosterDemo): io.johnsonlee.booster.demo
buildscript {
ext {
agp_version = "4.0.0"
booster_version = "4.16.2"
booster_version = "4.16.3"
kotlin_version = "1.5.31"
}
repositories {
Expand Down Expand Up @@ -257,7 +257,7 @@ class FirstClassTransformer : ClassTransformer {
buildscript {
ext {
agp_version = "4.0.0"
booster_version = "4.16.2"
booster_version = "4.16.3"
kotlin_version = "1.5.31"
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion docs/en/developer/first-variant-processor.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
ext {
agp_version = "3.5.0"
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/bugfixing/finalizer-timeout-exception.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public static void kill() {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/bugfixing/null-resource-assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class ResChecker {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/bugfixing/prevent-crash-from-system-bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class ActivityThreadCallback implements Handler.Callback {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/bugfixing/toast-crash-on-android-25.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public class ShadowToast {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions docs/en/guide/getting-started-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Take the multi-threading optimizationas the example, creating a file called `ini
```groovy
allprojects { project ->
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
repositories {
google()
mavenCentral()
Expand Down Expand Up @@ -52,7 +52,7 @@ allprojects { project ->
```kotlin
allprojects { project ->
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"
repositories {
google()
mavenCentral()
Expand Down
12 changes: 6 additions & 6 deletions docs/en/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Configuring *booster-gradle-plugin* in the *build.gradle* of the *Android* root

```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
repositories {
google()
Expand All @@ -27,7 +27,7 @@ buildscript {

```kotlin
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"

repositories {
google()
Expand Down Expand Up @@ -81,7 +81,7 @@ Configuring Booster plugins in the *build.gradle* under the Android root project

```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
repositories {
google()
Expand All @@ -100,7 +100,7 @@ buildscript {

```kotlin
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"

repositories {
google()
Expand Down Expand Up @@ -130,7 +130,7 @@ Booster provides many plugins, if you put all plugins into the classpath of Grad

```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
ext.debug = gradle.startParameter.taskNames.any {
it.contains('debug') || it.contains('Debug')
}
Expand All @@ -155,7 +155,7 @@ buildscript {

```kotlin
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"
val debug = gradle.startParameter.taskNames.any {
it.contains("debug", true)
}
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/misc/android-permission-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/misc/build-artifact-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/misc/dependencies-check-on-release-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal open class CheckSnapshot : DefaultTask() {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/misc/shared-library-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions docs/en/guide/performance/static-analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Putting the [booster-task-analyser](https://github.com/didi/booster/tree/master/

```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
dependencies {
classpath "com.didiglobal.booster:booster-gradle-plugin:$booster_version"
Expand All @@ -147,7 +147,7 @@ buildscript {

```kotlin
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"

dependencies {
classpath("com.didiglobal.booster:booster-gradle-plugin:$booster_version")
Expand Down
4 changes: 2 additions & 2 deletions docs/en/guide/shrinking/png-compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ When using [booster-task-compression-pngquant](https://github.com/didi/booster/b
```groovy
buildscript {
ext {
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand All @@ -61,7 +61,7 @@ buildscript {

```kotlin
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/shrinking/res-deredundancy.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ android {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/shrinking/res-index-inlining.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions docs/en/guide/shrinking/webp-compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down Expand Up @@ -66,7 +66,7 @@ $ ./gradlew compressDebugResourcesWithCwebp --info
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide/shrinking/zip-compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class ProcessedResourcesCompressionVariantProcessor : VariantProcessor {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/architecture/aapt2-output-reversing.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ fun runAapt2(project: Project, aapt2: String, args: List<String>) {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```groovy
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
dependencies {
classpath "com.didiglobal.booster:booster-gradle-plugin:$booster_version"
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/developer/first-class-transformer.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Source package (default: BoosterDemo): io.johnsonlee.booster.demo
buildscript {
ext {
agp_version = "4.0.0"
booster_version = "4.16.2"
booster_version = "4.16.3"
kotlin_version = "1.5.31"
}
repositories {
Expand Down Expand Up @@ -265,7 +265,7 @@ class FirstClassTransformer : ClassTransformer {
buildscript {
ext {
agp_version = "4.0.0"
booster_version = "4.16.2"
booster_version = "4.16.3"
kotlin_version = "1.5.31"
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/developer/first-variant-processor.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
ext {
agp_version = "3.5.0"
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/bugfixing/finalizer-timeout-exception.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public static void kill() {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/bugfixing/null-resource-assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class ResChecker {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/bugfixing/prevent-crash-from-system-bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class ActivityThreadCallback implements Handler.Callback {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/bugfixing/toast-crash-on-android-25.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public class ShadowToast {
buildscript {
ext {
kotlin_version = "1.5.31"
booster_version = "4.16.2"
booster_version = "4.16.3"
}
repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/guide/getting-started-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
```groovy
allprojects { project ->
buildscript {
ext.booster_version = "4.16.2"
ext.booster_version = "4.16.3"
repositories {
google()
mavenCentral()
Expand Down Expand Up @@ -49,7 +49,7 @@ allprojects { project ->
```kotlin
allprojects { project ->
buildscript {
val booster_version = "4.16.2"
val booster_version = "4.16.3"
repositories {
google()
mavenCentral()
Expand Down
Loading

0 comments on commit 507b637

Please sign in to comment.