AIX Generator | AI That Builds Kodular Extensions Automatically | From Visual Apps to Native Power

This extension already exists and is available here App Inventor Extensions: Location Service | Pura Vida Apps

Taifun

2 Likes

This extension builder is top notch. Making extensions as easy as it never before. Customer support is there whenever you need them. I had some issue at the beginning but it was resolved within minutes. Everybody should try this builder. Brilliant. Keep up the good work

1 Like

Thank You. :handshake:

New update

To add your API key, simply go to your User Settings page:
:backhand_index_pointing_right: AIX Generator - AI-Powered Extension Generator

Once configured, the platform will use your personal OpenAI API key for AI features, giving you more flexibility and control over usage.

If you have any questions or need assistance, feel free to contact our support team…

1 Like

I just tested with my own api key. It works as it should. This made a huge difference. Thanks

1 Like

With the Ultimate plan, you can import and export projects.

Yeah, I figured it out that’s why I deleted my comment. That’s cool. Might upgrade then. Testing for now.

Error: ENOENT: no such file or directory, open '/tmp/ext_xxx/assets/images/media.png

Here’s a clean and clear version in English, tailored for AixGenerator documentation or guidelines:


Icon Reference Requirement for AixGenerator Extensions

In AixGenerator, the icon reference in extensions must always be declared exactly as shown below:

@DesignerComponent(
        version = 1,
        description = "Simple extension to convert words (pt-BR) into integer numbers (long)",
        iconName = "icon.png"
)

:white_check_mark: Important rule
The icon file must be named exactly:

icon.png

And it must be correctly included in the extension assets.
No other file name or path should be used.


Common Error and How to Fix It

If you encounter an error similar to the one below:

{
  "error": "ENOENT: no such file or directory, open '/tmp/ext_26398728_2ca9eed9-ba47-4bf5-964b-aef11a9d1022_1769270441883/assets/images/media.png'",
  "fastLogs": "",
  "packageName": "com.yourpackage",
  "extensionName": "ExoVideoPlayer"
}

:magnifying_glass_tilted_left: What this means
This error usually indicates that the extension is trying to load an icon file that does not exist or is incorrectly referenced.

:white_check_mark: What the user must check

  • Ensure the icon file is named exactly: icon.png

  • Ensure the annotation uses:

    iconName = "icon.png"
    
  • Make sure the file is present in the correct extension assets directory


:light_bulb: Tip
Most ENOENT icon-related errors in AixGenerator are caused by:

  • Wrong icon file name
  • Wrong icon path
  • Using a name different from icon.png

Keeping this standard avoids build and packaging issues.

2 Likes