diff --git a/README.md b/README.md index 28fa894..7a72e44 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Latest tag Android CI Android Min Sdk - Kotlin + Kotlin AndroidWeekly Issue Kotlin License @@ -36,7 +36,7 @@ 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' } ``` @@ -44,7 +44,7 @@ dependencies { ```gradle dependencies { - implementation 'com.github.kevlar-kt:rooting:1.0.0' + implementation 'com.github.kevlar-kt:rooting:1.1.0' } ``` @@ -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' } ``` diff --git a/antipiracy/build.gradle b/antipiracy/build.gradle index 8aba077..d2e4896 100755 --- a/antipiracy/build.gradle +++ b/antipiracy/build.gradle @@ -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", @@ -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 } } diff --git a/docs/pages/modules/antipiracy/implementation.md b/docs/pages/modules/antipiracy/implementation.md index 202f2d5..1451133 100644 --- a/docs/pages/modules/antipiracy/implementation.md +++ b/docs/pages/modules/antipiracy/implementation.md @@ -8,7 +8,7 @@ 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" } ``` @@ -16,7 +16,7 @@ A working example for the antipiracy module can be found in the github repositor ``` kotlin dependencies { - implementation("io.github.kevlar-kt:antipiracy:1.0.0") + implementation("io.github.kevlar-kt:antipiracy:1.1.0") } ``` @@ -26,7 +26,7 @@ A working example for the antipiracy module can be found in the github repositor io.github.kevlar-kt antipiracy - 1.0.0 + 1.1.0 pom ``` diff --git a/docs/pages/modules/integrity/implementation.md b/docs/pages/modules/integrity/implementation.md index 706caab..41e0cb1 100644 --- a/docs/pages/modules/integrity/implementation.md +++ b/docs/pages/modules/integrity/implementation.md @@ -25,7 +25,7 @@ the `:showcase` module. ``` java dependencies { - implementation "io.github.kevlar-kt:integrity:1.0.0" + implementation "io.github.kevlar-kt:integrity:1.1.0" } ``` @@ -33,7 +33,7 @@ the `:showcase` module. ``` kotlin dependencies { - implementation("io.github.kevlar-kt:integrity:1.0.0") + implementation("io.github.kevlar-kt:integrity:1.1.0") } ``` @@ -43,7 +43,7 @@ the `:showcase` module. io.github.kevlar-kt integrity - 1.0.0 + 1.1.0 pom ``` diff --git a/docs/pages/modules/rooting/implementation.md b/docs/pages/modules/rooting/implementation.md index ee1de3b..6011041 100644 --- a/docs/pages/modules/rooting/implementation.md +++ b/docs/pages/modules/rooting/implementation.md @@ -8,7 +8,7 @@ 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" } ``` @@ -16,7 +16,7 @@ A working example for the rooting module can be found in the github repository u ``` kotlin dependencies { - implementation("io.github.kevlar-kt:rooting:1.0.0") + implementation("io.github.kevlar-kt:rooting:1.1.0") } ``` @@ -26,7 +26,7 @@ A working example for the rooting module can be found in the github repository u io.github.kevlar-kt rooting - 1.0.0 + 1.1.0 pom ``` diff --git a/docs/pages/overview/dependencies_integration.md b/docs/pages/overview/dependencies_integration.md index d1f46b9..6064d07 100644 --- a/docs/pages/overview/dependencies_integration.md +++ b/docs/pages/overview/dependencies_integration.md @@ -26,7 +26,7 @@ repositories { ``` java dependencies { - implementation "io.github.kevlar-kt:antipiracy:1.0.0" + implementation "io.github.kevlar-kt:antipiracy:1.1.0" } ``` @@ -34,7 +34,7 @@ repositories { ``` kotlin dependencies { - implementation("io.github.kevlar-kt:antipiracy:1.0.0") + implementation("io.github.kevlar-kt:antipiracy:1.1.0") } ``` @@ -44,7 +44,7 @@ repositories { io.github.kevlar-kt antipiracy - 1.0.0 + 1.1.0 pom ``` @@ -55,7 +55,7 @@ repositories { ``` java dependencies { - implementation "io.github.kevlar-kt:rooting:1.0.0" + implementation "io.github.kevlar-kt:rooting:1.1.0" } ``` @@ -63,7 +63,7 @@ repositories { ``` kotlin dependencies { - implementation("io.github.kevlar-kt:rooting:1.0.0") + implementation("io.github.kevlar-kt:rooting:1.1.0") } ``` @@ -73,7 +73,7 @@ repositories { io.github.kevlar-kt rooting - 1.0.0 + 1.1.0 pom ``` @@ -85,7 +85,7 @@ repositories { ``` java dependencies { - implementation "io.github.kevlar-kt:integrity:1.0.0" + implementation "io.github.kevlar-kt:integrity:1.1.0" } ``` @@ -93,7 +93,7 @@ repositories { ``` kotlin dependencies { - implementation("io.github.kevlar-kt:integrity:1.0.0") + implementation("io.github.kevlar-kt:integrity:1.1.0") } ``` @@ -103,7 +103,7 @@ repositories { io.github.kevlar-kt integrity - 1.0.0 + 1.1.0 pom ``` diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 19de3b6..ee7b3d3 100755 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -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 diff --git a/integrity/build.gradle b/integrity/build.gradle index 99feaf9..4b63655 100755 --- a/integrity/build.gradle +++ b/integrity/build.gradle @@ -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", @@ -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 } } diff --git a/rooting/build.gradle b/rooting/build.gradle index 6080e67..c828d10 100755 --- a/rooting/build.gradle +++ b/rooting/build.gradle @@ -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", @@ -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 } } diff --git a/showcase/build.gradle b/showcase/build.gradle index cc12451..b0ab6a2 100755 --- a/showcase/build.gradle +++ b/showcase/build.gradle @@ -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 } @@ -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"