Skip to content

Commit

Permalink
Release 1.19.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasGorisse committed Jul 18, 2021
1 parent c9d66a6 commit f4f8cbe
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Sceneform Maintained SDK for Android
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.19.4")
implementation("com.gorisse.thomas.sceneform:sceneform:1.19.5")
}
```
**[more...](https://thomasgorisse.github.io/sceneform-android-sdk/dependencies)**
Expand Down
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 14
versionName "1.19.4"
versionCode 15
versionName "1.19.5"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/com/google/ar/sceneform/Trackables.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Trackables {
* or {@link Frame#getUpdatedTrackables(Class)} depending on your needs.
*/
public static <T extends Trackable> Collection<Plane> getPlanes(Collection<T> trackables) {
return getPlanes(trackables, null);
return getPlanes(trackables, (TrackingState[]) null);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Sceneform Maintained SDK for Android
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.19.4")
implementation("com.gorisse.thomas.sceneform:sceneform:1.19.5")
}
```
**[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.19.4
VERSION_NAME=1.19.5
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 14
versionName "1.19.4"
versionCode 15
versionName "1.19.5"
}
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 14
versionName "1.19.4"
versionCode 15
versionName "1.19.5"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down

0 comments on commit f4f8cbe

Please sign in to comment.