Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed Jun 13, 2023
1 parent 827651f commit 5891f77
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
working_directory: ~/code
docker:
- image: cimg/android:2023.05.1
- image: cimg/android:2023.06.1
environment:
GRADLE_OPTS: -Dorg.gradle.workers.max=1 -Dorg.gradle.daemon=false -Dkotlin.compiler.execution.strategy="in-process"
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Also check out more complicated demos:
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) (how this library started)

Use it now!
`be.mygod.librootkotlinx:librootkotlinx:1.0.4+`
`be.mygod.librootkotlinx:librootkotlinx:1.0.0+`
(see Releases page for latest version)

## Features
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ plugins {

android {
namespace = "be.mygod.librootkotlinx.demo"
compileSdk = 33
compileSdk = 34
defaultConfig {
applicationId = "be.mygod.librootkotlinx.demo"
minSdk = 21
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -25,7 +25,7 @@ android {

dependencies {
implementation(project(":lib"))
implementation("androidx.activity:activity:1.7.1")
implementation("androidx.activity:activity:1.7.2")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test:runner:1.5.2")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
val androidGradleVersion = "8.0.1"
val androidGradleVersion = "8.0.2"
id("com.android.application") version androidGradleVersion apply false
id("com.android.library") version androidGradleVersion apply false
id("com.github.ben-manes.versions") version "0.46.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

android {
namespace = "be.mygod.librootkotlinx"
compileSdk = 33
compileSdk = 34
defaultConfig {
minSdk = 21
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion lib/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RELEASE_SIGNING_ENABLED=true

GROUP=be.mygod.librootkotlinx
POM_ARTIFACT_ID=librootkotlinx
VERSION_NAME=1.0.4
VERSION_NAME=1.0.5

POM_NAME=librootkotlinx
POM_DESCRIPTION=Run rooted Kotlin JVM code made super easy with coroutines and parcelize!
Expand Down

0 comments on commit 5891f77

Please sign in to comment.