Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed Aug 31, 2022
1 parent 260e2aa commit 13d4322
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
Run rooted Kotlin JVM code made super easy with coroutines and parcelize!
Check out demo at `app` to see just how easy it is.
Also check out more complicated demos:
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot)
* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) (how this library started)

Use it now!
`be.mygod.librootkotlinx:librootkotlinx:1.0.0`

## Features

Expand Down
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ plugins {
id("com.github.ben-manes.versions") version "0.42.0"
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
}

buildscript {
dependencies {
classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0")
}
}
1 change: 1 addition & 0 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id("com.android.library")
id("com.vanniktech.maven.publish")
kotlin("android")
id("kotlin-parcelize")
}
Expand Down
23 changes: 23 additions & 0 deletions lib/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true

GROUP=be.mygod.librootkotlinx
POM_ARTIFACT_ID=librootkotlinx
VERSION_NAME=1.0.0

POM_NAME=librootkotlinx
POM_DESCRIPTION=Run rooted Kotlin JVM code made super easy with coroutines and parcelize!
POM_INCEPTION_YEAR=2022
POM_URL=https://github.com/Mygod/librootkotlinx

POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENSE_DIST=repo

POM_SCM_URL=https://github.com/Mygod/librootkotlinx
POM_SCM_CONNECTION=scm:[email protected]:Mygod/librootkotlinx.git
POM_SCM_DEV_CONNECTION=scm:[email protected]:Mygod/librootkotlinx.git

POM_DEVELOPER_ID=Mygod
POM_DEVELOPER_NAME=Mygod
POM_DEVELOPER_URL=https://github.com/Mygod

0 comments on commit 13d4322

Please sign in to comment.