mirror of
https://github.com/fankes/unmeta-gradle-plugin.git
synced 2025-09-05 18:45:17 +08:00
Prepare release 1.1.0
This commit is contained in:
16
README.md
16
README.md
@@ -27,12 +27,12 @@ that the Unmeta plugin must be applied after the Android plugin.
|
|||||||
```kotlin
|
```kotlin
|
||||||
// Project build.gradle.kts
|
// Project build.gradle.kts
|
||||||
plugins {
|
plugins {
|
||||||
id("com.axzae.unmeta") version "1.0.0" apply false
|
id("com.axzae.unmeta") version "1.1.0" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Module(app) build.gradle.kts
|
// Module(app) build.gradle.kts
|
||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
// id("com.android.application")
|
||||||
// ...
|
// ...
|
||||||
id("com.axzae.unmeta")
|
id("com.axzae.unmeta")
|
||||||
}
|
}
|
||||||
@@ -45,13 +45,13 @@ plugins {
|
|||||||
// Project build.gradle.kts
|
// Project build.gradle.kts
|
||||||
buildscript {
|
buildscript {
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("com.axzae:unmeta:1.0.0")
|
classpath("com.axzae:unmeta:1.1.0")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Module(app) build.gradle.kts
|
// Module(app) build.gradle.kts
|
||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
// id("com.android.application")
|
||||||
// ...
|
// ...
|
||||||
id("com.axzae.unmeta")
|
id("com.axzae.unmeta")
|
||||||
}
|
}
|
||||||
@@ -75,17 +75,17 @@ Generated task report is located at `$BUILD_DIR/outputs/logs/unmeta-report.txt`
|
|||||||
|
|
||||||
```
|
```
|
||||||
Start dropping @DebugMetadata from kotlin classes
|
Start dropping @DebugMetadata from kotlin classes
|
||||||
Removed @DebugMetadata annotation from com\example\main\MainActivity$greetings$2.class
|
- Removed @DebugMetadata annotation from com\example\main\MainActivity$greetings$2.class
|
||||||
Removed @DebugMetadata annotation from com\example\main\MainActivity$onCreate$2.class
|
- Removed @DebugMetadata annotation from com\example\main\MainActivity$onCreate$2.class
|
||||||
Task finished.
|
Task finished.
|
||||||
Class files scanned: 7
|
Class files scanned: 7
|
||||||
Class files modified: 7
|
Class files modified: 2
|
||||||
Execution time: 12ms.
|
Execution time: 12ms.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Feel free to open a issue or submit a pull request for any bugs/improvements.
|
Feel free to open an issue or submit a pull request for any bugs/improvements.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
ID=com.axzae.unmeta
|
ID=com.axzae.unmeta
|
||||||
VERSION=1.0.0
|
VERSION=1.1.0
|
||||||
GROUP=com.axzae
|
GROUP=com.axzae
|
||||||
DISPLAY_NAME=Unmeta Kotlin Gradle Plugin for Android
|
DISPLAY_NAME=Unmeta Kotlin Gradle Plugin for Android
|
||||||
DESCRIPTION=Remove @DebugMetadata annotation from your Kotlin classes
|
DESCRIPTION=Remove @DebugMetadata annotation from your Kotlin classes
|
||||||
|
Reference in New Issue
Block a user