diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index 09f02413..7290c9ca 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -938,21 +938,6 @@ bool VulkanExampleBase::initVulkan() submitInfo.signalSemaphoreCount = 1; submitInfo.pSignalSemaphores = &semaphores.renderComplete; -#if defined(VK_USE_PLATFORM_ANDROID_KHR) - // Get Android device name and manufacturer (to display along GPU name) - androidProduct = ""; - char prop[PROP_VALUE_MAX+1]; - int len = __system_property_get("ro.product.manufacturer", prop); - if (len > 0) { - androidProduct += std::string(prop) + " "; - }; - len = __system_property_get("ro.product.model", prop); - if (len > 0) { - androidProduct += std::string(prop); - }; - LOGD("androidProduct = %s", androidProduct.c_str()); -#endif - return true; } diff --git a/base/vulkanexamplebase.h b/base/vulkanexamplebase.h index dfbb203e..42e241bb 100644 --- a/base/vulkanexamplebase.h +++ b/base/vulkanexamplebase.h @@ -211,8 +211,6 @@ public: bool touchDown = false; double touchTimer = 0.0; int64_t lastTapTime = 0; - /** @brief Product model and manufacturer of the Android device (via android.Product*) */ - std::string androidProduct; #elif (defined(VK_USE_PLATFORM_IOS_MVK) || defined(VK_USE_PLATFORM_MACOS_MVK)) void* view; #elif defined(VK_USE_PLATFORM_WAYLAND_KHR)