Skip to content

Commit

Permalink
Kevlar 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cioccarellia committed Dec 23, 2022
1 parent 9aa9537 commit 6e03748
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<a href="https://github.com/kevlar-kt/kevlar/releases"><img src="https://img.shields.io/github/v/tag/kevlar-kt/kevlar" alt="Latest tag" /></a>
<a href="https://github.com/kevlar-kt/kevlar/actions?query=workflow%3A%22Build%22"><img src="https://github.com/kevlar-kt/kevlar/actions/workflows/push-debug-build.yaml/badge.svg" alt="Android CI" /></a>
<a href="https://source.android.com/setup/start/build-numbers"><img src="https://img.shields.io/badge/minSdk-19-00E676.svg" alt="Android Min Sdk"></a>
<a href="https://kotlinlang.org/docs/releases.html"><img src="https://img.shields.io/badge/kotlin-1.7.10-orange.svg" alt="Kotlin"></a>
<a href="https://kotlinlang.org/docs/releases.html"><img src="https://img.shields.io/badge/kotlin-1.7.22-orange.svg" alt="Kotlin"></a>
<a href="https://androidweekly.net/issues/issue-528"><img src="https://img.shields.io/badge/AndroidWeekly-528-5bb3e2" alt="AndroidWeekly Issue"></a>
<a href="https://us12.campaign-archive.com/?u=f39692e245b94f7fb693b6d82&id=15eb56d1f5"><img src="https://img.shields.io/badge/KotlinWeekly-315-%238a78e8" alt="Kotlin"></a>
<a href="https://github.com/kevlar-kt/kevlar/blob/master/LICENSE.md"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"></a>
Expand Down Expand Up @@ -36,15 +36,15 @@ Its purpose is to be an auditing tool, used to inspect the security environment

```gradle
dependencies {
implementation 'com.github.kevlar-kt:antipiracy:1.0.0'
implementation 'com.github.kevlar-kt:antipiracy:1.1.0'
}
```

### Rooting

```gradle
dependencies {
implementation 'com.github.kevlar-kt:rooting:1.0.0'
implementation 'com.github.kevlar-kt:rooting:1.1.0'
}
```

Expand All @@ -53,7 +53,7 @@ dependencies {

```gradle
dependencies {
implementation 'com.github.kevlar-kt:integrity:1.0.0'
implementation 'com.github.kevlar-kt:integrity:1.1.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions antipiracy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ project.ext.set("module_${ext.module_name}", new ModuleArtifactCoordinates(
"antipiracy",

// PUBLISH_VERSION
"1.0.0",
"1.1.0",

// PUBLISH_ARTIFACT_DESC
"Kevlar Antipiracy",
Expand All @@ -60,7 +60,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.0.0-kevlar-antipiracy"
versionName "1.1.0-kevlar-antipiracy"
versionCode 1
}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/pages/modules/antipiracy/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ A working example for the antipiracy module can be found in the github repositor

``` java
dependencies {
implementation "io.github.kevlar-kt:antipiracy:1.0.0"
implementation "io.github.kevlar-kt:antipiracy:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:antipiracy:1.0.0")
implementation("io.github.kevlar-kt:antipiracy:1.1.0")
}
```

Expand All @@ -26,7 +26,7 @@ A working example for the antipiracy module can be found in the github repositor
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>antipiracy</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions docs/pages/modules/integrity/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ the `:showcase` module.

``` java
dependencies {
implementation "io.github.kevlar-kt:integrity:1.0.0"
implementation "io.github.kevlar-kt:integrity:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:integrity:1.0.0")
implementation("io.github.kevlar-kt:integrity:1.1.0")
}
```

Expand All @@ -43,7 +43,7 @@ the `:showcase` module.
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>integrity</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions docs/pages/modules/rooting/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ A working example for the rooting module can be found in the github repository u

``` java
dependencies {
implementation "io.github.kevlar-kt:rooting:1.0.0"
implementation "io.github.kevlar-kt:rooting:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:rooting:1.0.0")
implementation("io.github.kevlar-kt:rooting:1.1.0")
}
```

Expand All @@ -26,7 +26,7 @@ A working example for the rooting module can be found in the github repository u
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>rooting</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand Down
18 changes: 9 additions & 9 deletions docs/pages/overview/dependencies_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ repositories {

``` java
dependencies {
implementation "io.github.kevlar-kt:antipiracy:1.0.0"
implementation "io.github.kevlar-kt:antipiracy:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:antipiracy:1.0.0")
implementation("io.github.kevlar-kt:antipiracy:1.1.0")
}
```

Expand All @@ -44,7 +44,7 @@ repositories {
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>antipiracy</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -55,15 +55,15 @@ repositories {

``` java
dependencies {
implementation "io.github.kevlar-kt:rooting:1.0.0"
implementation "io.github.kevlar-kt:rooting:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:rooting:1.0.0")
implementation("io.github.kevlar-kt:rooting:1.1.0")
}
```

Expand All @@ -73,7 +73,7 @@ repositories {
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>rooting</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -85,15 +85,15 @@ repositories {

``` java
dependencies {
implementation "io.github.kevlar-kt:integrity:1.0.0"
implementation "io.github.kevlar-kt:integrity:1.1.0"
}
```

??? gradle "Kotlin DSL"

``` kotlin
dependencies {
implementation("io.github.kevlar-kt:integrity:1.0.0")
implementation("io.github.kevlar-kt:integrity:1.1.0")
}
```

Expand All @@ -103,7 +103,7 @@ repositories {
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>integrity</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
4 changes: 2 additions & 2 deletions integrity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ project.ext.set("module_${ext.module_name}", new ModuleArtifactCoordinates(
"integrity",

// PUBLISH_VERSION
"1.0.0",
"1.1.0",

// PUBLISH_ARTIFACT_DESC
"Kevlar Integrity",
Expand All @@ -60,7 +60,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.0.0-kevlar-integrity"
versionName "1.1.0-kevlar-integrity"
versionCode 1
}
}
Expand Down
4 changes: 2 additions & 2 deletions rooting/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ project.ext.set("module_${ext.module_name}", new ModuleArtifactCoordinates(
"rooting",

// PUBLISH_VERSION
"1.0.0",
"1.1.0",

// PUBLISH_ARTIFACT_DESC
"Kevlar Rooting",
Expand All @@ -60,7 +60,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.0.0-kevlar-rooting"
versionName "1.1.0-kevlar-rooting"
versionCode 1
}
}
Expand Down
4 changes: 2 additions & 2 deletions showcase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply from: rootProject.file("scripts/commons/app_config.gradle")
* */
android {
defaultConfig {
versionName "1.0.0-app-showcase"
versionName "1.1.0-app-showcase"
versionCode 1
multiDexEnabled true
}
Expand Down Expand Up @@ -61,7 +61,7 @@ dependencies {
implementation project(':rooting')
implementation project(':integrity')
} else {
def kevlar_version = "1.0.0"
def kevlar_version = "1.1.0"

implementation "io.github.kevlar-kt:antipiracy:$kevlar_version"
implementation "io.github.kevlar-kt:rooting:$kevlar_version"
Expand Down

0 comments on commit 6e03748

Please sign in to comment.