Skip to content

Commit 5891f77

Browse files
committed
v1.0.5
1 parent 827651f commit 5891f77

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
working_directory: ~/code
55
docker:
6-
- image: cimg/android:2023.05.1
6+
- image: cimg/android:2023.06.1
77
environment:
88
GRADLE_OPTS: -Dorg.gradle.workers.max=1 -Dorg.gradle.daemon=false -Dkotlin.compiler.execution.strategy="in-process"
99
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Also check out more complicated demos:
1313
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) (how this library started)
1414

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

1919
## Features

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ plugins {
66

77
android {
88
namespace = "be.mygod.librootkotlinx.demo"
9-
compileSdk = 33
9+
compileSdk = 34
1010
defaultConfig {
1111
applicationId = "be.mygod.librootkotlinx.demo"
1212
minSdk = 21
13-
targetSdk = 33
13+
targetSdk = 34
1414
versionCode = 1
1515
versionName = "1.0"
1616
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -25,7 +25,7 @@ android {
2525

2626
dependencies {
2727
implementation(project(":lib"))
28-
implementation("androidx.activity:activity:1.7.1")
28+
implementation("androidx.activity:activity:1.7.2")
2929
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
3030
testImplementation("junit:junit:4.13.2")
3131
androidTestImplementation("androidx.test:runner:1.5.2")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
val androidGradleVersion = "8.0.1"
2+
val androidGradleVersion = "8.0.2"
33
id("com.android.application") version androidGradleVersion apply false
44
id("com.android.library") version androidGradleVersion apply false
55
id("com.github.ben-manes.versions") version "0.46.0"

lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
android {
99
namespace = "be.mygod.librootkotlinx"
10-
compileSdk = 33
10+
compileSdk = 34
1111
defaultConfig {
1212
minSdk = 21
1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

lib/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RELEASE_SIGNING_ENABLED=true
33

44
GROUP=be.mygod.librootkotlinx
55
POM_ARTIFACT_ID=librootkotlinx
6-
VERSION_NAME=1.0.4
6+
VERSION_NAME=1.0.5
77

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

0 commit comments

Comments
 (0)