Skip to content

Commit

Permalink
Merge pull request #17 from 2BAB/dev
Browse files Browse the repository at this point in the history
Remove unused println and comments
  • Loading branch information
2BAB committed Dec 28, 2023
2 parents e49760b + 7cca297 commit 86b198a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -20,7 +20,7 @@ If you are not familiar with new Artifact/Variant API of AGP (since 7.0), please
``` kotlin
dependencies {
compileOnly("com.android.tools.build:gradle:8.1.2")
implementation("me.2bab:polyfill:0.9.0") <--
implementation("me.2bab:polyfill:0.9.1") <--
}
```

Expand Down Expand Up @@ -138,8 +138,8 @@ Polyfill is only supported & tested on latest **2** Minor versions of Android Gr

| AGP Version | Latest Support Version |
|:-------------:|:--------------------------------:|
| 8.1.x / 8.0.x | 0.9.0 |
| 7.2.x / 7.1.x | 0.8.0 |
| 8.1.x / 8.0.x | 0.9.1 |
| 7.2.x / 7.1.x | 0.8.1 |
| 7.2.x / 7.1.x | 0.7.0 |
| 7.1.x | 0.6.2 |
| 7.0.x | 0.4.1 |
Expand Down
6 changes: 3 additions & 3 deletions README_zh.md
Expand Up @@ -20,7 +20,7 @@ Polyfill 是一个第三方的**工件仓库**,服务于编写 Android 构建
``` kotlin
dependencies {
compileOnly("com.android.tools.build:gradle:8.1.2")
implementation("me.2bab:polyfill:0.9.0") <--
implementation("me.2bab:polyfill:0.9.1")
}
```

Expand Down Expand Up @@ -141,8 +141,8 @@ Polyfill 只支持并在最新的两个 Android Gradle Plugin (minor) 版本进

| AGP Version | Latest Support Version |
|:-------------:|:--------------------------------:|
| 8.1.x / 8.0.x | 0.9.0 |
| 7.2.x / 7.1.x | 0.8.0 |
| 8.1.x / 8.0.x | 0.9.1 |
| 7.2.x / 7.1.x | 0.8.1 |
| 7.2.x / 7.1.x | 0.7.0 |
| 7.1.x | 0.6.2 |
| 7.0.x | 0.4.1 |
Expand Down
Expand Up @@ -12,7 +12,7 @@ object BuildConfig {
}

object Versions {
const val polyfillDevVersion = "0.9.0"
const val polyfillDevVersion = "0.9.1"

val polyfillSourceCompatibilityVersion = JavaVersion.VERSION_11
val polyfillTargetCompatibilityVersion = JavaVersion.VERSION_17
Expand Down
Expand Up @@ -32,7 +32,6 @@ fun createGithubReleaseTaskInternal(
version: String,
releaseNotes: String
): TaskProvider<GithubReleaseTask> {
// val id = version.replace(".", "")
return project.tasks.register<GithubReleaseTask>("releaseArtifactsToGithub") {
authorization.set("Token $token")
owner.set("2bab")
Expand Down
Expand Up @@ -40,7 +40,6 @@ class ResourceMergePostHookConfiguration(
&& taskName.contains("test").not()
}
}
println("mergeTaskkkk" + (mergeTask.name))
actionList().forEachIndexed { index, action ->
action.onTaskConfigure(mergeTask)
mergeTask.doLast("ResourceMergePostHookByPolyfill$index") {
Expand Down

0 comments on commit 86b198a

Please sign in to comment.