Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasGorisse committed Mar 27, 2024
1 parent 3abb70c commit 8be5d20
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 25 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,21 @@ A Sceneform replacement in Kotlin and Jetpack Compose
```gradle
dependencies {
// Sceneview
implementation 'io.github.sceneview:sceneview:2.0.4'
implementation 'io.github.sceneview:sceneview:2.1.0'
}
```

[API Reference](https://sceneview.github.io/api/sceneview-android/sceneview/)

### AR (Filament + ARCore included)

```gradle
dependencies {
// ARSceneview
implementation 'io.github.sceneview:arsceneview:2.0.4'
implementation 'io.github.sceneview:arsceneview:2.1.0'
}
```

[API Reference](https://sceneview.github.io/api/sceneview-android/arsceneview/)

## Usage
Expand All @@ -58,6 +60,7 @@ Scene(
environment = environmentLoader.createHDREnvironment("environment.hdr")!!
)
```

[Sample](https://github.com/SceneView/sceneview-android/tree/main/samples/model-viewer-compose)

### AR Model Viewer
Expand Down Expand Up @@ -93,6 +96,7 @@ ARScene(
)
)
```

[Sample](https://github.com/SceneView/sceneview-android/tree/main/samples/ar-model-viewer-compose)

## AR - Cloud Anchors
Expand Down
2 changes: 1 addition & 1 deletion arsceneview/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
######################
POM_NAME=ArSceneView
POM_ARTIFACT_ID=arsceneview
VERSION_NAME=2.0.4
VERSION_NAME=2.1.0
POM_PACKAGING=aar
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android.nonFinalResIds=false
# Filament Plugin
######################
# See the FilamentPlugin.groovy file for the description of these properties
filamentPluginEnabled=true
filamentPluginEnabled=false
# This value must point to your Filament dektop tools uncompressed dir, downloaded from here:
# https://github.com/google/filament/releases
com.google.android.filament.tools-dir=../../filament/out/release/filament
Expand Down
2 changes: 1 addition & 1 deletion samples/ar-augmented-image/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ dependencies {
implementation project(":samples:common")

// ARSceneview
releaseImplementation "io.github.sceneview:arsceneview:2.0.4"
releaseImplementation "io.github.sceneview:arsceneview:2.1.0"
debugImplementation project(":arsceneview")
}
2 changes: 1 addition & 1 deletion samples/ar-cloud-anchor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ dependencies {
implementation project(":samples:common")

// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:2.0.4"
releaseImplementation "io.github.sceneview:arsceneview:2.1.0"
debugImplementation project(":arsceneview")
}
16 changes: 8 additions & 8 deletions samples/ar-model-viewer-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ android {
dependencies {
implementation project(":samples:common")

implementation "androidx.compose.ui:ui:1.5.3"
implementation "androidx.compose.foundation:foundation:1.5.3"
implementation 'androidx.activity:activity-compose:1.7.2'
implementation 'androidx.compose.material:material:1.5.3'
implementation "androidx.compose.ui:ui-tooling-preview:1.5.3"
implementation "androidx.navigation:navigation-compose:2.7.0"
debugImplementation "androidx.compose.ui:ui-tooling:1.5.3"
implementation "androidx.compose.ui:ui:1.6.4"
implementation "androidx.compose.foundation:foundation:1.6.4"
implementation 'androidx.activity:activity-compose:1.8.2'
implementation 'androidx.compose.material:material:1.6.4'
implementation "androidx.compose.ui:ui-tooling-preview:1.6.4"
implementation "androidx.navigation:navigation-compose:2.7.7"
debugImplementation "androidx.compose.ui:ui-tooling:1.6.4"

// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:2.0.4"
releaseImplementation "io.github.sceneview:arsceneview:2.1.0"
debugImplementation project(":arsceneview")
}
2 changes: 1 addition & 1 deletion samples/ar-point-cloud/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ dependencies {
implementation project(":samples:common")

// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:2.0.4"
releaseImplementation "io.github.sceneview:arsceneview:2.1.0"
debugImplementation project(":arsceneview")
}
16 changes: 8 additions & 8 deletions samples/model-viewer-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ android {
dependencies {
implementation project(":samples:common")

implementation "androidx.compose.ui:ui:1.5.4"
implementation "androidx.compose.foundation:foundation:1.5.4"
implementation 'androidx.activity:activity-compose:1.8.1'
implementation 'androidx.compose.material:material:1.5.4'
implementation "androidx.compose.ui:ui-tooling-preview:1.5.4"
implementation "androidx.navigation:navigation-compose:2.7.5"
debugImplementation "androidx.compose.ui:ui-tooling:1.5.4"
implementation "androidx.compose.ui:ui:1.6.4"
implementation "androidx.compose.foundation:foundation:1.6.4"
implementation 'androidx.activity:activity-compose:1.8.2'
implementation 'androidx.compose.material:material:1.6.4'
implementation "androidx.compose.ui:ui-tooling-preview:1.6.4"
implementation "androidx.navigation:navigation-compose:2.7.7"
debugImplementation "androidx.compose.ui:ui-tooling:1.6.4"

// ArSceneView
releaseImplementation "io.github.sceneview:sceneview:2.0.4"
releaseImplementation "io.github.sceneview:sceneview:2.1.0"
debugImplementation project(":sceneview")
}
2 changes: 1 addition & 1 deletion samples/model-viewer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ dependencies {
implementation project(":samples:common")

// SceneView
implementation "io.github.sceneview:sceneview:2.0.2"
implementation "io.github.sceneview:sceneview:2.0.3"
}
2 changes: 1 addition & 1 deletion sceneview/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
######################
POM_NAME=SceneView
POM_ARTIFACT_ID=sceneview
VERSION_NAME=2.0.4
VERSION_NAME=2.1.0
POM_PACKAGING=aar

0 comments on commit 8be5d20

Please sign in to comment.