Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasGorisse committed Mar 17, 2022
1 parent 14f4046 commit 2bfd704
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This is a Sceneform replacement in Kotlin
```gradle
dependencies {
// 3D only
implementation 'io.github.sceneview:sceneview:0.1.0'
implementation 'io.github.sceneview:sceneview:0.2.0'
}
```
[API Reference](https://sceneview.github.io/api/sceneview-android/sceneview/)
Expand All @@ -34,7 +34,7 @@ dependencies {
```gradle
dependencies {
// 3D and ARCore
implementation 'io.github.sceneview:arsceneview:0.1.0'
implementation 'io.github.sceneview:arsceneview:0.2.0'
}
```
[API Reference](https://sceneview.github.io/api/sceneview-android/arsceneview/)
Expand Down
5 changes: 2 additions & 3 deletions arsceneview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
// id 'org.jetbrains.dokka'
id 'org.jetbrains.dokka'
}

android {
Expand Down Expand Up @@ -39,8 +39,7 @@ dependencies {
implementation 'com.google.android.material:material:1.5.0'

// SceneView
releaseApi "io.github.sceneview:sceneview:0.1.0"
debugApi project(":sceneview")
api project(":sceneview")

// ARCore
def arcore_version = '1.29.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# MavenCentral Publish
######################
GROUP=io.github.sceneview
VERSION_NAME=0.1.0
VERSION_NAME=0.2.0

POM_DESCRIPTION=3D/AR Android View with ARCore and Google Filament

Expand Down
2 changes: 1 addition & 1 deletion samples/ar-cursor-placement/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"

// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:0.1.0"
releaseImplementation "io.github.sceneview:arsceneview:0.2.0"
debugImplementation project(":arsceneview")

// AndroidX
Expand Down
2 changes: 1 addition & 1 deletion samples/ar-model-viewer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"

// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:0.1.0"
releaseImplementation "io.github.sceneview:arsceneview:0.2.0"
debugImplementation project(":arsceneview")

// AndroidX
Expand Down
4 changes: 2 additions & 2 deletions samples/model-viewer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"

// ArSceneView
releaseImplementation "io.github.sceneview:sceneview:0.1.0"
// SceneView
releaseImplementation "io.github.sceneview:sceneview:0.2.0"
debugImplementation project(":sceneview")

// AndroidX
Expand Down

0 comments on commit 2bfd704

Please sign in to comment.