Skip to content

Commit

Permalink
v1.1.1: updated dependencies, kotlin and plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
cioccarellia committed Aug 31, 2023
1 parent c7c982b commit 6453cc4
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.9-orange.svg" alt="Kotlin"></a>
<a href="https://kotlinlang.org/docs/releases.html"><img src="https://img.shields.io/badge/kotlin-1.9.10-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.1.0'
implementation 'com.github.kevlar-kt:antipiracy:1.1.1'
}
```

### Rooting

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

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

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

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

// PUBLISH_VERSION
"1.1.0",
"1.1.1",

// PUBLISH_ARTIFACT_DESC
"Kevlar Antipiracy",
Expand All @@ -61,7 +61,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.1.0-kevlar-antipiracy"
versionName "1.1.1-kevlar-antipiracy"
versionCode 1
}
namespace 'com.kevlar.antipiracy'
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'io.github.gradle-nexus.publish-plugin'

buildscript {
ext {
kotlin_version = "1.9.0"
kotlin_version = "1.9.10"
}

repositories {
Expand All @@ -18,9 +18,9 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.github.ben-manes:gradle-versions-plugin:0.44.0"
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.47'
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
classpath "com.github.ben-manes:gradle-versions-plugin:0.47.0"
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.48'
classpath 'io.github.gradle-nexus:publish-plugin:1.3.0'
}
}

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.1.0"
implementation "io.github.kevlar-kt:antipiracy:1.1.1"
}
```

??? gradle "Kotlin DSL"

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

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.1.0</version>
<version>1.1.1</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.1.0"
implementation "io.github.kevlar-kt:integrity:1.1.1"
}
```

??? gradle "Kotlin DSL"

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

Expand All @@ -43,7 +43,7 @@ the `:showcase` module.
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>integrity</artifactId>
<version>1.1.0</version>
<version>1.1.1</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.1.0"
implementation "io.github.kevlar-kt:rooting:1.1.1"
}
```

??? gradle "Kotlin DSL"

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

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.1.0</version>
<version>1.1.1</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.1.0"
implementation "io.github.kevlar-kt:antipiracy:1.1.1"
}
```

??? gradle "Kotlin DSL"

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

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

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

??? gradle "Kotlin DSL"

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

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

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

??? gradle "Kotlin DSL"

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

Expand All @@ -103,7 +103,7 @@ repositories {
<dependency>
<groupId>io.github.kevlar-kt</groupId>
<artifactId>integrity</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>pom</type>
</dependency>
```
Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ kotlin.code.style=official
# Right now the first one is depecated and the second one is experimental.

# android.jetifier.blacklist=bcprov
android.jetifier.ignorelist=bcprov
# android.jetifier.ignorelist=bcprov
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
android.nonFinalResIds=false
#org.gradle.configuration-cache=true
12 changes: 6 additions & 6 deletions integrity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ project.ext.set("module_${ext.module_name}", new ModuleArtifactCoordinates(
"integrity",

// PUBLISH_VERSION
"1.1.0",
"1.1.1",

// PUBLISH_ARTIFACT_DESC
"Kevlar Integrity",
Expand All @@ -61,7 +61,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.1.0-kevlar-integrity"
versionName "1.1.1-kevlar-integrity"
versionCode 1
}
namespace 'com.kevlar.integrity'
Expand All @@ -75,14 +75,14 @@ dependencies {
// Kotlin dependencies
compileOnly "androidx.annotation:annotation:1.6.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"

// Testing dependencies
testImplementation "junit:junit:4.13.2"
testImplementation "androidx.test:core:1.5.0"
testImplementation "org.mockito:mockito-core:4.10.0"
testImplementation "com.google.truth:truth:1.1.3"
testImplementation "org.robolectric:robolectric:4.9"
testImplementation "org.mockito:mockito-core:5.5.0"
testImplementation "com.google.truth:truth:1.1.5"
testImplementation "org.robolectric:robolectric:4.10.3"
}


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

// PUBLISH_VERSION
"1.1.0",
"1.1.1",

// PUBLISH_ARTIFACT_DESC
"Kevlar Rooting",
Expand All @@ -61,7 +61,7 @@ apply from: rootProject.file("scripts/commons/library_config.gradle")
* */
android {
defaultConfig {
versionName "1.1.0-kevlar-rooting"
versionName "1.1.1-kevlar-rooting"
versionCode 1
}
namespace 'com.kevlar.rooting'
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.1.0-app-showcase"
versionName "1.1.1-app-showcase"
versionCode 1
multiDexEnabled true
}
Expand Down Expand Up @@ -62,7 +62,7 @@ dependencies {
implementation project(':rooting')
implementation project(':integrity')
} else {
def kevlar_version = "1.1.0"
def kevlar_version = "1.1.1"

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

0 comments on commit 6453cc4

Please sign in to comment.