Skip to content

Commit adb9f9c

Browse files
committed
Release 1.23.0
1 parent 9a0bb3b commit adb9f9c

File tree

15 files changed

+21
-21
lines changed

15 files changed

+21
-21
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This repository was originaly a fork of [Sceneform](https://github.com/google-ar
5252
*app/build.gradle*
5353
```gradle
5454
dependencies {
55-
implementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
55+
implementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
5656
}
5757
```
5858
[**more...**](https://sceneview.github.io/sceneform-android/dependencies)

Diff for: core/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ dependencies {
6868
implementation "com.github.kittinunf.fuel:fuel-coroutines:$fuel_version"
6969
}
7070

71-
//mavenPublish {
72-
// releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
73-
//}
71+
mavenPublish {
72+
releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
73+
}

Diff for: docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This repository is a fork of [Sceneform](https://github.com/google-ar/sceneform-
5656
*app/build.gradle*
5757
```gradle
5858
dependencies {
59-
implementation("com.gorisse.thomas.sceneform:sceneform:1.22.0")
59+
implementation("com.gorisse.thomas.sceneform:sceneform:1.23.0")
6060
}
6161
```
6262
[**more...**](https://sceneview.github.io/sceneform-android/dependencies)

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx4608m -Dkotlin.daemon.jvm.options\="-Xmx4608m"
66
# MavenCentral Publish
77
######################
88
GROUP=com.gorisse.thomas.sceneform
9-
VERSION_NAME=1.22.0
9+
VERSION_NAME=1.23.0
1010
POM_DESCRIPTION=Sceneform is a 3D framework with a physically based renderer that is optimized for mobile devices and that makes it easy for you to build Augmented Reality (AR) apps without requiring OpenGL or Unity.
1111
POM_URL=https://github.com/SceneView/sceneform-android
1212
POM_SCM_URL=https://github.com/SceneView/sceneform-android

Diff for: samples/3d-model-viewer/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ dependencies {
3232
implementation "androidx.appcompat:appcompat:$appcompat_version"
3333
implementation "androidx.fragment:fragment-ktx:$fragment_ktx_version"
3434

35-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
35+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3636
debugApi project(":sceneform")
3737
}

Diff for: samples/ar-model-viewer-java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ dependencies {
2727
implementation "androidx.appcompat:appcompat:$appcompat_version"
2828
implementation "androidx.fragment:fragment:$fragment_version"
2929

30-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
30+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3131
debugApi project(":sceneform")
3232
}

Diff for: samples/ar-model-viewer/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ dependencies {
5050
implementation "com.google.android.material:material:$material_version"
5151

5252
// Sceneform
53-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
53+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
5454
debugApi project(":sceneform")
5555
}

Diff for: samples/augmented-faces/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ dependencies {
2828
implementation "androidx.appcompat:appcompat:$appcompat_version"
2929
implementation "androidx.fragment:fragment:$fragment_version"
3030

31-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
31+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3232
debugApi project(":sceneform")
3333
}

Diff for: samples/augmented-images/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636

3737
implementation "com.google.android.material:material:$material_version"
3838

39-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
39+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
4040
debugApi project(":sceneform")
4141

4242
}

Diff for: samples/depth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ dependencies {
2929
implementation "androidx.appcompat:appcompat:$appcompat_version"
3030
implementation "androidx.fragment:fragment:$fragment_version"
3131

32-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
32+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3333
debugApi project(":sceneform")
3434
}

Diff for: samples/environment-lights/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ dependencies {
4040

4141
implementation "com.google.android.material:material:$material_version"
4242

43-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
43+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
4444
debugApi project(":sceneform")
4545
}

Diff for: samples/image-texture/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ dependencies {
3232
implementation "androidx.appcompat:appcompat:$appcompat_version"
3333
implementation "androidx.fragment:fragment-ktx:$fragment_ktx_version"
3434

35-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
35+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3636
debugApi project(":sceneform")
3737
}

Diff for: samples/video-texture/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ dependencies {
3434

3535
implementation "com.google.android.material:material:$material_version"
3636

37-
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.22.0"
37+
releaseImplementation "com.gorisse.thomas.sceneform:sceneform:1.23.0"
3838
debugApi project(":sceneform")
3939
}

Diff for: sceneform/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ dependencies {
4141
api project(":ux")
4242
}
4343

44-
//mavenPublish {
45-
// releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
46-
//}
44+
mavenPublish {
45+
releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
46+
}

Diff for: ux/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ dependencies {
4949
implementation "androidx.appcompat:appcompat:$appcompat_version"
5050
}
5151

52-
//mavenPublish {
53-
// releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
54-
//}
52+
mavenPublish {
53+
releaseSigningEnabled = project.hasProperty('signing.keyId') && project.hasProperty('signing.password')
54+
}

0 commit comments

Comments
 (0)