Skip to content

Commit

Permalink
Release 1.18.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasGorisse committed May 26, 2021
1 parent 3e02558 commit 1b797ef
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apps without requiring OpenGL or Unity.
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.10")
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.11")
}
```
**[more...](https://thomasgorisse.github.io/sceneform-android-sdk/dependencies)**
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ allprojects {
mavenCentral()
google()
}
}

task printProjectProperties {
project.properties.each {println " $it"}
}
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
// Sceneform requires minSdkVersion >= 24.
minSdkVersion 24
targetSdkVersion 30
versionCode 8
versionName "1.18.10"
versionCode 9
versionName "1.18.11"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apps without requiring OpenGL or Unity.
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.10")
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.11")
}
```
**[more...](https://thomasgorisse.github.io/sceneform-android-sdk/dependencies)**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx1536M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
# Maven Publish
###############
GROUP=com.gorisse.thomas.sceneform
VERSION_NAME=1.18.10
VERSION_NAME=1.18.11
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.
POM_URL=https://github.com/thomasgorisse/sceneform-android-sdk
POM_SCM_URL=https://github.com/thomasgorisse/sceneform-android-sdk
Expand Down
4 changes: 2 additions & 2 deletions sceneform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 30
versionCode 8
versionName "1.18.10"
versionCode 9
versionName "1.18.11"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
4 changes: 2 additions & 2 deletions ux/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
// Sceneform requires minSdkVersion >= 24.
minSdkVersion 24
targetSdkVersion 30
versionCode 8
versionName "1.18.10"
versionCode 9
versionName "1.18.11"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down

0 comments on commit 1b797ef

Please sign in to comment.