Michael Gangolf

Results 266 comments of Michael Gangolf

using `ti sdk install 12.2.1.GA` works fine too: ![Screenshot_20240103_110258](https://github.com/tidev/titanium-cli/assets/4334997/4b412c4f-df87-4cea-aade-e6d5a8e205da)

try and add a `console.log(release)` in your `%appdata%\npm\node_modules\titanium\lib\commands\sdk.js` file in line 641 (above the if) ![Screenshot_20240103_112613](https://github.com/tidev/titanium-cli/assets/4334997/71615dfb-8b7e-4d0d-b7c0-303c6b2533ea) That should show ![Screenshot_20240103_112646](https://github.com/tidev/titanium-cli/assets/4334997/b3c5a773-911a-4311-967c-f7d10a4111f2) and then it selects the win32 one and starts to...

even when you download the zip file and install it from that local file? It shouldn't make any online request at that point. you can also add another line in...

It still should display the `console.log()`. If you think that osName is empty you could log that too. There error is in this line: https://github.com/tidev/titanium-cli/blob/master/lib/commands/sdk.js#L652 so url is null. But...

> ![image](https://private-user-images.githubusercontent.com/148062530/294207060-ffaf2948-3736-4a19-8686-8905f0e82804.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MDQzNzg4NzcsIm5iZiI6MTcwNDM3ODU3NywicGF0aCI6Ii8xNDgwNjI1MzAvMjk0MjA3MDYwLWZmYWYyOTQ4LTM3MzYtNGExOS04Njg2LTg5MDVmMGU4MjgwNC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjQwMTA0JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI0MDEwNFQxNDI5MzdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT03OTZlYzJiNzEzMDM4Y2ZhZWI4ZTk3N2QyYWY4YTZkYjBmODllMjY0NWI1ZWFmZjZiZDQyOWM0MjUyN2I2NDBjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZhY3Rvcl9pZD0wJmtleV9pZD0wJnJlcG9faWQ9MCJ9.Ym_nv_V-tzadtto5Ykrltvt2ZbsDbtq8Zxpn_UiRpl0) console.log() is undefined which one is that? It just shows that the content is undefined e.g. `console.log(release)` it couldn't set that variable. If it is `releases` it didn't...

the `osName` log has to be outside of the if as `release` is null. Also please add `console.log(releases)` to see if it did fetch something from the server.

`console.log(releases)` (with the s) should output the same in the CLI. Is you colleague using the same internet connection? Maybe npm is blocked to fetch stuff from github?

I know its a very old issue, just so it can be closed: https://github.com/brownemint/Ti-Android-CameraView/pull/23 :smile:

sounds more like a memory issue. Please try to run it with `-l trace`and without liveview. You can also start `adb logcat` on a different terminal and look for a...

the photo picker is loading externally over your app and if memory gets low your app is killed in the background. The SO post is a native app with the...