Skip to content

Commit ddbafe1

Browse files
committed
v1.0.1
1 parent 0979bb7 commit ddbafe1

File tree

9 files changed

+26
-18
lines changed

9 files changed

+26
-18
lines changed

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.0`
16+
`be.mygod.librootkotlinx:librootkotlinx:1.0.1`
1717

1818
## Features
1919

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ android {
2525

2626
dependencies {
2727
implementation(project(":lib"))
28-
implementation("androidx.activity:activity:1.5.1")
28+
implementation("androidx.activity:activity:1.6.1")
2929
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
3030
testImplementation("junit:junit:4.13.2")
31-
androidTestImplementation("androidx.test:runner:1.4.0")
32-
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
31+
androidTestImplementation("androidx.test:runner:1.5.1")
32+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
3333
}

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
2-
val androidGradleVersion = "7.2.2"
2+
val androidGradleVersion = "7.3.1"
33
id("com.android.application") version androidGradleVersion apply false
44
id("com.android.library") version androidGradleVersion apply false
5-
id("com.github.ben-manes.versions") version "0.42.0"
6-
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
5+
id("com.github.ben-manes.versions") version "0.44.0"
6+
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
77
}
88

99
buildscript {
1010
dependencies {
11-
classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0")
11+
classpath("com.vanniktech:gradle-maven-publish-plugin:0.22.0")
1212
}
1313
}

gradle/wrapper/gradle-wrapper.jar

935 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ dependencies {
2626
api("androidx.collection:collection-ktx:1.2.0")
2727
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
2828
testImplementation("junit:junit:4.13.2")
29-
androidTestImplementation("androidx.test:runner:1.4.0")
30-
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
29+
androidTestImplementation("androidx.test:runner:1.5.1")
30+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
3131
}

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.0
6+
VERSION_NAME=1.0.1
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)