Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.0'
classpath 'com.android.tools.build:gradle:8.13.1'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
12 changes: 6 additions & 6 deletions hellocardboard-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apply plugin: 'com.android.application'

android {
compileSdk 35
compileSdk = 35
lintOptions {
abortOnError false
abortOnError = false
}
defaultConfig {
applicationId "com.google.cardboard.hellocardboard"
Expand All @@ -15,10 +15,10 @@ android {
// Vulkan - Requires 24 or higher
//
// See the release notes for details.
minSdkVersion 26
targetSdkVersion 35
minSdkVersion = 26
targetSdkVersion = 35
versionCode 1
versionName "1.31.0"
versionName "1.32.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
Expand All @@ -36,7 +36,7 @@ android {
externalNativeBuild.cmake {
path "CMakeLists.txt"
}
namespace 'com.google.cardboard'
namespace = 'com.google.cardboard'
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions hellocardboard-ios/HelloCardboard-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.31.0</string>
<string>1.32.0</string>
<key>CFBundleVersion</key>
<string>1.31.0</string>
<string>1.32.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
Expand Down
16 changes: 11 additions & 5 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ apply plugin: 'com.android.library'
apply plugin: 'com.google.protobuf'

android {
compileSdk 35
compileSdk = 35
lintOptions {
abortOnError false
abortOnError = false
}
defaultConfig {
// #gles3 #vulkan - You can reduce minSdkVersion down to 16 depending
Expand All @@ -15,8 +15,9 @@ android {
// Vulkan - Requires 24 or higher
//
// See the release notes for details.
minSdkVersion 26
targetSdkVersion 35
minSdkVersion = 26
targetSdkVersion = 35
ndkVersion = "29.0.14206865"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
Expand Down Expand Up @@ -49,7 +50,12 @@ android {
main.proto.srcDirs = ["${project.rootDir}/proto"]
main.proto.includes = ["cardboard_device.proto"]
}
namespace 'com.google.cardboard.sdk'
namespace = 'com.google.cardboard.sdk'

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}

protobuf {
Expand Down
2 changes: 1 addition & 1 deletion sdk/qrcode/ios/sdk.bundle/resolutions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ iPhone10.6,iPhone X,458.0f
iPhone11.2,iPhone Xs,458.0f
iPhone11.4,iPhone Xs Max,456.0f
iPhone11.6,iPhone Xs Max,456.0f
iPhone11.8,iPhone Xr,456.0f
iPhone11.8,iPhone Xr,326.0f
iPhone12.1,iPhone 11,326.0f
iPhone12.3,iPhone 11 Pro,458.0f
iPhone12.5,iPhone 11 Pro Max,458.0f
Expand Down
1 change: 1 addition & 0 deletions sdk/unity/xr_unity_plugin/vulkan/vulkan_renderer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ class VulkanRenderer : public Renderer {
const VkRenderPassCreateInfo render_pass_create_info{
.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
.pNext = nullptr,
.flags = 0,
.attachmentCount = 1,
.pAttachments = &attachment_descriptions,
.subpassCount = 1,
Expand Down