Skip to content

Commit 13d4322

Browse files
committed
v1.0.0
1 parent 260e2aa commit 13d4322

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
Run rooted Kotlin JVM code made super easy with coroutines and parcelize!
1010
Check out demo at `app` to see just how easy it is.
1111
Also check out more complicated demos:
12-
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot)
12+
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) (how this library started)
13+
14+
Use it now!
15+
`be.mygod.librootkotlinx:librootkotlinx:1.0.0`
1316

1417
## Features
1518

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ plugins {
55
id("com.github.ben-manes.versions") version "0.42.0"
66
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
77
}
8+
9+
buildscript {
10+
dependencies {
11+
classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0")
12+
}
13+
}

lib/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id("com.android.library")
3+
id("com.vanniktech.maven.publish")
34
kotlin("android")
45
id("kotlin-parcelize")
56
}

lib/gradle.properties

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
SONATYPE_HOST=DEFAULT
2+
RELEASE_SIGNING_ENABLED=true
3+
4+
GROUP=be.mygod.librootkotlinx
5+
POM_ARTIFACT_ID=librootkotlinx
6+
VERSION_NAME=1.0.0
7+
8+
POM_NAME=librootkotlinx
9+
POM_DESCRIPTION=Run rooted Kotlin JVM code made super easy with coroutines and parcelize!
10+
POM_INCEPTION_YEAR=2022
11+
POM_URL=https://github.com/Mygod/librootkotlinx
12+
13+
POM_LICENSE_NAME=The Apache Software License, Version 2.0
14+
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
15+
POM_LICENSE_DIST=repo
16+
17+
POM_SCM_URL=https://github.com/Mygod/librootkotlinx
18+
POM_SCM_CONNECTION=scm:[email protected]:Mygod/librootkotlinx.git
19+
POM_SCM_DEV_CONNECTION=scm:[email protected]:Mygod/librootkotlinx.git
20+
21+
POM_DEVELOPER_ID=Mygod
22+
POM_DEVELOPER_NAME=Mygod
23+
POM_DEVELOPER_URL=https://github.com/Mygod

0 commit comments

Comments
 (0)