🍰
Grasshopper ES por BetweenRealities
  • Using and Generating Documentation
    • GitHub
    • Discord
      • Speckle Webhooks
    • Speckle Client
  • Potencial technological implementations
  • 🧞Compute
    • Introducción a Grasshopper
      • Customizar Entorno
        • VSCode
      • Rhinoceros 3d
      • Hops
      • Galapagos
    • Modelos Informados
      • Comportamiento Estructural
        • Automatizar cálculo Python
      • OOP
      • Rhino Inside Revit
        • Revit
          • Modelado 3d en Revit
          • Certificación profesional Revit
      • Energía
    • Procesos Urbanos
      • Automatizar Qgis
      • Librerías Python
      • Librerías Grasshopper
      • Stable Diffusion
    • Programación
      • RhinoPython
        • Anatomía del script
        • Python básico
        • Tuples, listas y diccionarios
        • Operadores y funciones
        • Ejecución condicional
        • Geometría
        • Clases
      • Multithread
  • 🪅Database
    • Lenguaje Python
      • Types and operations
      • Statements and syntax
      • Function and generators
      • Modules and packages
      • Classes and OPP
      • Exception and tools
      • Advance topics
    • Análisis de la Información
      • Comparison with SQL
      • Comparison with R / R libraries
      • Pandas
    • Abrir Acceso
      • Rest API Abierta
    • Blockchain Descentralización
  • 🕸️COLLECT
    • Captura de Datos
      • Raspberry Pi
        • Encendido y apagado automático
      • Arduino
      • UAS
      • Fotogrametría
        • Crashes
    • Técnicas Machine Learning
      • Clasificación
      • Computer Vision
    • Computación en la Nube
      • Contenedores
      • Azure
      • Ubuntu Server Deploy
      • PostgreSQL Server
      • Rhino Compute Deploy
  • 🍭INTERACT
    • Introducción a Unreal Engine
      • Ejecutar Python
      • Datasmith
      • Materiales
        • Crear PBR
        • Materiales Introducción
      • Iluminación
        • Iluminación Introducción
        • Raytraced Iluminación Cinemática
      • Assets Management
    • Interacción Inmersiva
      • Blueprints
        • Blueprints estandar
        • Blueprints Introducción
        • Diseño Nivel
      • Packaging
      • Performance
    • Interfaces Bidimensionales
Con tecnología de GitBook
En esta página
  • Setting Up Android SDK and NDK
  • Setting up Unreal Engine project

¿Te fue útil?

  1. INTERACT
  2. Interacción Inmersiva

Packaging

Setting Up Android SDK and NDK

Instalar Android Studio-4.0: https://developer.android.com/studio/archive Instalar SDK, NDK y BuildTools: Android SDK Command-line Tools (latest) .bat: E:\Epic Games\UE_5.0\Engine\Extras\Android

if "%PLATFORMS_VERSION%" == "" SET PLATFORMS_VERSION=android-30
if "%BUILDTOOLS_VERSION%" == "" SET BUILDTOOLS_VERSION=30.0.3
if "%CMAKE_VERSION%" == "" SET CMAKE_VERSION=3.10.2.4988404
if "%NDK_VERSION%" == "" SET NDK_VERSION=21.4.7075529
where.exe /Q adb.exe
IF /I "%ERRORLEVEL%" NEQ "0" (
	echo "Current user path: %USERPATH%"
	setx PATH "%USERPATH%;%PLATFORMTOOLS%"
	echo Added %PLATFORMTOOLS% to path
)

Setting up Unreal Engine project

Set Paths in UE5:

[/Script/AndroidPlatformEditor.AndroidSDKSettings]
SDKPath=(Path="C:/Users/%USERNAME%/AppData/Local/Android/Sdk")
NDKPath=(Path="C:/Users/%USERNAME%/AppData/Local/Android/Sdk/ndk/21.4.7075529")
JavaPath=(Path="C:/Program Files/Android/Android Studio/jre")
SDKAPILevel=latest
NDKAPILevel=android-21

Packaging: Clean project: star project with minimun presets (no limpiar los no utilizados, rompe el proyecto) Package project: https://docs.unrealengine.com/5.0/en-US/packaging-and-cooking-games-in-unreal-engine/


streaming texture: https://www.techarthub.com/fixing-texture-streaming-pool-over-budget-in-ue4/ registry files: https://docs.unrealengine.com/5.0/en-US/how-to-fix-a-gpu-driver-crash-when-using-unreal-engine/ build-tools error: https://stackoverflow.com/questions/68387270/android-studio-error-installed-build-tools-revision-31-0-0-is-corrupted clear tutorial: https://www.youtube.com/watch?v=YiJaxpWGJp8 problems launching .bat: https://www.reddit.com/r/unrealengine/comments/pc8b5t/has_anybody_got_the_oculus_quest_2_to_work_with/ UE documentation: https://docs.unrealengine.com/5.0/en-US/how-to-set-up-android-sdk-and-ndk-for-your-unreal-engine-development-environment/ Forum errors: https://forums.unrealengine.com/t/why-is-setupandroid-bat-failing-with-default-setup-directories/466313/8 GPU crash: https://docs.unrealengine.com/5.0/en-US/how-to-fix-a-gpu-driver-crash-when-using-unreal-engine/ .bat error: https://forums.unrealengine.com/t/setupandroid-bat-ue4-26-2-error/484733 https://forums.unrealengine.com/t/cannot-build-for-android-because-of-gradle-error/463428/9 https://forums.unrealengine.com/t/error-cmd-exe-failed-with-args-gradle/466061/11

AnteriorDiseño NivelSiguientePerformance

Última actualización hace 2 años

¿Te fue útil?

🍭