Skip to content

Commit

Permalink
change ASM6 -> ASM7
Browse files Browse the repository at this point in the history
  • Loading branch information
mzule committed Jul 20, 2023
1 parent ff1a89c commit 8f1fff1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.MD
Expand Up @@ -20,7 +20,7 @@ Add rhea-gradle-plugin as a dependency in the build.gradle file in the root dire
``` js
buildscript {
dependencies {
classpath 'com.bytedance.btrace:rhea-gradle-plugin:2.0.2'
classpath 'com.bytedance.btrace:rhea-gradle-plugin:2.0.3-rc01'
}
}
```
Expand All @@ -30,7 +30,7 @@ Then, apply the following plugins and dependencies to the app/build.gradle file.
``` js
dependencies {
// rheatrace core lib
implementation "com.bytedance.btrace:rhea-core:2.0.2"
implementation "com.bytedance.btrace:rhea-core:2.0.3-rc01"
}
...
apply plugin: 'com.bytedance.rhea-trace'
Expand Down
4 changes: 2 additions & 2 deletions README.zh-CN.md
Expand Up @@ -15,7 +15,7 @@
``` groovy
buildscript {
dependencies {
classpath 'com.bytedance.btrace:rhea-gradle-plugin:2.0.2'
classpath 'com.bytedance.btrace:rhea-gradle-plugin:2.0.3-rc01'
}
}
```
Expand All @@ -25,7 +25,7 @@ buildscript {
``` groovy
dependencies {
// rheatrace core lib
implementation "com.bytedance.btrace:rhea-core:2.0.2"
implementation "com.bytedance.btrace:rhea-core:2.0.3-rc01"
}
...
apply plugin: 'com.bytedance.rhea-trace'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -33,7 +33,7 @@ android.enableR8=false
precise_instrumentation_enable=false
#pom settings
POM_GROUP_ID=com.bytedance.btrace
POM_VERSION_NAME=2.0.2
POM_VERSION_NAME=2.0.3-rc01
POM_DESCRIPTION=btrace is a high performance Android trace tool which is based on Perfetto.
POM_URL=https://github.com/bytedance/btrace
POM_INCEPTION_YEAR=2020
Expand Down
Expand Up @@ -56,7 +56,7 @@ object VersionsCompat {
@JvmStatic
val asmApi: Int
get() = when {
greatThanOrEqual(AGPVersion.AGP_7_0_0) -> Opcodes.ASM6
greatThanOrEqual(AGPVersion.AGP_7_0_0) -> Opcodes.ASM7
else -> Opcodes.ASM5
}

Expand Down

0 comments on commit 8f1fff1

Please sign in to comment.