Can not build Kepler Video Sample App

:warning: Before you continue


Before submitting a bug report, please review our troubleshooting documentation at Troubleshoot Issues | Vega Troubleshooting

If you still want to file a bug report, please make sure to fill in all the details below and provide the necessary information.

NOTE: PLEASE ONLY REPORT A SINGLE BUG USING THIS TEMPLATE.
If you’re experiencing multiple issues, please file a separate report for each.


:backhand_index_pointing_right: Bug Description


1. Summary

The build process fails during the build:release stage because the Conan package manager cannot resolve vegapackagingtool/1.1.3. This is due to repeated 503 Service Unavailable errors from the Artifactory server.

App Name:@amzn/Keplervideoapp
App Link on Amazon Appstore (found through Developer@amznConsole → Actions column in App List → View on Amazon.com):

Bug Severity
Select one that applies

  • Impacts operation of app
  • Blocks current development
  • Improvement suggestion
  • Issue with documentation (If selected, please share the doc link and describe the issue)
  • Other

2. Steps to Reproduce

  1. Run npm install to ensure dependencies are present.

  2. Run npm run build:app or npm run build:release.

  3. The process starts Metro bundler, completes JS bundling, but fails when invoking kepler path hermes.

3. Observed Behavior

Explain what actually happened, noting any discrepancies or malfunctions.

The build fails with the error: ERROR: Package 'vegapackagingtool/1.1.3' not resolved: HTTPSConnectionPool(host='k-artifactory-external.labcollab.net', port=443): Max retries exceeded (Caused by ResponseError('too many 503 error responses')).

4. Expected Behavior

Describe what you expected the SDK to do under normal operation.

The SDK should be able to connect to k-artifactory-external.labcollab.net, resolve the dependency graph via Conan, and complete the build process.

4.a Possible Root Cause & Temporary Workaround

Fill out anything you have tried. If you don’t know, N/A is acceptable

Root Cause: The remote Artifactory server (labcollab.net) is either down, under maintenance, or overloaded (HTTP 503).

Workaround: Tried clearing Conan cache (rm -rf ~/.kepler/conan) and re-logging via kepler login, but the issue persists.gửi 

5. Logs or crash report

(Please

ERROR logs.txt (17.4 KB)

make sure to provide relevant logs as attachment)

For crash issues, please refer this guide for faster troubleshooting: Detect Where the App Crash Originates | Design and Develop Vega Apps

  • App/Device Logs

  • Crash Logs

  • Crash Report

  • For issues with Vega Studio Extension, please share log files from below folders:
    For v0.22+:

    ~/.vscode/extensions/amazon.vega-extension-<version>/ExtensionLogs
    ~/.vscode/extensions/amazon.vega-ui-extension-<version>/ExtensionLogs
    

    For v0.21 and earlier:

     ~/.vscode/extensions/amazon.kepler-extension-<version>/ExtensionLogs
     ~/.vscode/extensions/amazon.kepler-ui-extension-<version>/ExtensionLogs
    

6. Environment

Please fill out the fields related to your bug below:

  • SDK Version: Run SDK Version: Kepler SDK 0.10.4

  • App State: [Foreground/Background]

  • OS Information: macOS (Darwin arm64)

    <!-- Answer here if applicable --> 
    

7. Example Code Snippet / Screenshots / Screengrabs

Include any relevant code or component setup in React Native that can help reproduce the bug.

import { ExampleComponent } from 'custom-sdk';

<ExampleComponent config={{ key: 'value' }} />

:backhand_index_pointing_right: Playback Issues


If this is a playback issue, please provide your content URL, any pre-conditions (like geo-location), and let us know if it’s x86 or arm7.


<!-- Describe your playback issue if applicable -->

Please share the following details in addition:_

  • Player SDK: [Bitmovin, Shaka, ...]
  • Player SDK Version: [e.g. 1.23]
    • Audio Codecs: [AAC, ...]
    • Video Codecs: [h.264, mp4]
    • Manifest Types: [m3u8, dash, etc ..]

Q: If applicable, please provide your media/content url
If this is created dynamically, tokenized, etc please provide a way for us to access it

[N/A or Content / Media Url for testing]

Q: Are there any special headers required to reproduce the issue you are facing?

[N/A or Insert Headers]

Additionally please provide the following if possible
Provide Screenshots / Screengrabs / Logs. Please include as much information as you can that will help debug.

<!-- Answer here if applicable --> 

:backhand_index_pointing_right: Additional Context


Any Additional Context you would like to provide?
Add any other relevant information, such as recent updates to the SDK, dependencies, or device OS that may affect the bug.

<!-- Answer here if applicable  --> 

Hi @NamTran

Thank you for the detailed bug report.

The 503 errors from k-artifactory-external.labcollab.net indicate a server-side availability issue when resolving the vegapackagingtool/1.1.3 Conan package.

However, I want to flag that you’re using Kepler SDK 0.10.4, which is significantly outdated. The current SDK version is 0.22+, and the platform has been rebranded from Kepler to Vega. Since August 2025, Appstore app submissions require SDK v0.20 or newer.

The Artifactory infrastructure for very old SDK versions may not be actively maintained, which could explain the persistent 503 errors you’re seeing.

I reviewed the logs and confirmed the issue. A few additional observations:

  • Your app directory (KeplerVideoSampleApp-Code-RN72-v0.20.8) suggests it’s designed for SDK v0.20.8, but your installed SDK is v0.10.4. This version mismatch is likely the root cause — the Conan dependency vegapackagingtool/1.1.3 may not exist for SDK 0.10.4, and the old SDK’s Artifactory endpoints may no longer be reliably served.
  • Your CLI is also showing a deprecation warning: build-kepler is deprecated in favor of build-vega.
  • Your React Native version (0.60.6) in the npm warnings is also very outdated.

Recommended action:

  1. Upgrade to the latest Vega SDK (v0.22+) (or at minimum v0.20.8 to match your app). This will resolve the dependency resolution issue as the current SDK uses updated and actively maintained package repositories. See the installation guide.
  2. After installing the new SDK, you’ll need to migrate your project from the old Kepler structure to Vega. Key changes include:
  • CLI command changed from kepler to vega
  • Package names changed from @amzn/ to @amazon-devices/
  • Updated dependency versions
  1. If you need to continue building with the old SDK temporarily while you plan the migration, try again later in case the 503 is a transient Artifactory outage. You can also try:
rm -rf ~/.kepler/conan
kepler login

Then retry the build. But this is only a temporary measure — upgrading is strongly recommended.

Important: Apps built with SDK versions older than 0.20 will be rejected during Appstore submission, so upgrading is necessary regardless.

Warm regards,
Ivy