File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ To use the plugin add the following to your app `build.gradle.kt`:
14
14
``` kotlin
15
15
plugins {
16
16
kotlin(" jvm" )
17
- id(" io.github.izhangzhihao.unmeta" ) version " 1.0.1 "
17
+ id(" io.github.izhangzhihao.unmeta" ) version " 1.0.0 "
18
18
}
19
19
20
20
unmeta {
@@ -26,7 +26,7 @@ To enable the plugin only for release builds add this section:
26
26
27
27
``` kotlin
28
28
gradle.taskGraph.whenReady {
29
- if (allTasks.any { it.name.contains(" buildPlugin " ) }) {
29
+ if (allTasks.any { it.name.contains(" release " ) }) {
30
30
unmeta {
31
31
enable.set(true )
32
32
}
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
kotlin(" jvm" )
3
- id(" io.github.izhangzhihao.unmeta" ) version " 1.0.1 "
3
+ id(" io.github.izhangzhihao.unmeta" ) version " 1.0.0 "
4
4
}
5
5
6
6
unmeta {
Original file line number Diff line number Diff line change 1
1
ID =io.github.izhangzhihao.unmeta
2
- VERSION =1.0.1
2
+ VERSION =1.0.0
3
3
GROUP =io.github.izhangzhihao
4
4
DISPLAY_NAME =Unmeta Kotlin classes plugin
5
- DESCRIPTION =Unmeta Kotlin classes plugin
5
+ DESCRIPTION =Remove @Metadata and @DebugMetadata annotation from your Kotlin classes
6
6
WEBSITE =https://github.com/izhangzhihao/unmeta
7
7
VCS_URL =https://github.com/izhangzhihao/unmeta
8
8
IMPLEMENTATION_CLASS =io.github.izhangzhihao.unmeta.UnmetaPlugin
You can’t perform that action at this time.
0 commit comments