Skip to content

Commit

Permalink
Updated library versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ojaynico committed Apr 19, 2021
1 parent 0bd58e2 commit b4796fd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
# ojaynico-kotlin-react-native
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native/1.1.0/pom)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native/1.1.1/pom)
[![Kotlin](https://img.shields.io/badge/kotlin-1.4.32-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react)
[![npm version](https://img.shields.io/npm/v/react-native?color=brightgreen&label=npm%20package)](https://www.npmjs.com/package/react-native)
[![Kotlin JS IR supported](https://img.shields.io/badge/Kotlin%2FJS-IR%20supported-yellow)](https://kotl.in/jsirsupported)

Kotlin Wrappers for React Native Components and APIs

Java Version : 14

Kotlin Version : 1.4.31

React Version : 17.0.1

React Native Version : 0.63.4

Available components: All react native components are available in this wrapper. Check them out using the URL below:

https://reactnative.dev/docs/components-and-apis
Expand All @@ -37,7 +32,7 @@ repositories {
}

dependencies {
implementation("com.github.ojaynico:ojaynico-kotlin-react-native:1.1.0")
implementation("com.github.ojaynico:ojaynico-kotlin-react-native:1.1.1")
}
```

Expand Down
15 changes: 8 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
kotlin("js") version "1.4.31"
kotlin("js") version "1.4.32"
id("maven-publish")
id("io.codearte.nexus-staging") version "0.22.0"
id("io.codearte.nexus-staging") version "0.30.0"
signing
}

group = "com.github.ojaynico"
version = "1.1.0"
version = "1.1.1"

val artifactName = project.name
val artifactGroup = project.group.toString()
Expand All @@ -31,6 +31,7 @@ val pomDeveloperEmail = "[email protected]"
repositories {
mavenCentral()
jcenter()
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
}

kotlin {
Expand All @@ -41,10 +42,10 @@ kotlin {
}

dependencies {
implementation("org.jetbrains:kotlin-react:17.0.1-pre.148-kotlin-1.4.30")
implementation("org.jetbrains:kotlin-extensions:1.0.1-pre.148-kotlin-1.4.30")
implementation(npm("react", "17.0.1"))
implementation(npm("react-native", "0.63.4"))
implementation("org.jetbrains:kotlin-react:17.0.2-pre.153-kotlin-1.4.32")
implementation("org.jetbrains:kotlin-extensions:1.0.1-pre.153-kotlin-1.4.32")
implementation(npm("react", "17.0.2"))
implementation(npm("react-native", "0.64.0"))
}

val sourcesJar by tasks.registering(Jar::class) {
Expand Down

0 comments on commit b4796fd

Please sign in to comment.