Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
int02h committed Sep 15, 2022
1 parent a178808 commit 5910b4b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,24 @@ ManifestGuard Gradle plugin is aimed to solve this issue for you. For every buil
ManifestGuard is applicable only to Android application modules because for libraries it does not make any sense. The setup is easy, just add the plugin to `plugins` blocks in your application's `build.gradle`:
```groovy
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.dpforge.manifestguard' version 'x.x.x'
}
```
or legacy plugin application:
```groovy
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
dependencies {
classpath "com.dpforge:manifestguard:0.0.2"
}
}
apply plugin: "com.dpforge.manifestguard"
```
Basically that's it. But you can configure the plugin depending on your needs. Take a look at the next section.

### Configure the plugin
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.dpforge'
version '0.0.2'
version '0.0.3'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 5910b4b

Please sign in to comment.