Running 'pebble install' gives error on Mac - pebble-watch

I am trying to run pebble install on Mac. I have already installed the Pebble SDK, and I can start the Pebble simulator... I cannot however start the phone simulator.
When I cd'd into the directory of my app and ran pebble install, it returned :
[INFO ] Starting Pebble emulator...
[INFO ] Starting phone simulator...
[ERROR ] Could not connect to phone at localhost:12342. Ensure that
'Developer Connection' is enabled in the Pebble app.
I don't have the Pebble app on my phone, nor do I have the Pebble watch yet.
How can I fix this ?
Thanks in advance,
Fjpackard.

I finally figured this out ! I already had Python 3.4 installed, so even though I install Python 2.7, it got a bit messed up :/ I just uninstalled both versions of Python, then reinstalled 2.7 and it works perfectlyl ! =)

Related

Why can't i install PostgreSQL on Windows 10

enter image description here
Hello, i tried to run .exe file PostgreSQL 14.2 version (download from https://www.enterprisedb.com/downloads/postgres-postgresql-downloads) and get this error like in the picture. I also tried to run a lot of versions (started from 10.2 and end 14.2) but getting this error. What should i do?
I was in trouble with the same phenomenon as you. But after installing windows update KB5011487 yesterday, the problem went away. Build No. of windows10(pro) is 19043.1586.

installing reactnative for android on macOS Catlina

i try to install reactnative today
been following tutorial from here : https://reactnative.dev/docs/environment-setup
when i try to run the test project
it failed to load emulator
chandra#MacBook-Pro-Chandra AwesomeProject % npx react-native run-android
info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.
Jetifier found 967 file(s) to forward-jetify. Using 8 workers...
info Starting JS server...
/bin/sh: adb: command not found
info Launching emulator...
error Failed to launch emulator. Reason: No emulators found as an output of emulator -list-avds.
warn Please launch an emulator manually or connect a device. Otherwise app may fail to launch.
info Installing the app...
can anyone help me please? thanks
You must create at least one AVD (Android Virtual Device) in order to run it in the emulator. It seems that you don't have any. An easy way to check is to run the following command:
emulator -list-avds
# Example output
Nougat_7
Pixel_2_API_29_Google_Play_
If the output of the command is empty, it means you don't have any AVDs yet. In this case you can create an AVD by opening Android Studio and then clicking the Configure menu and after that opening AVD Manager. In AVD Manager you can create a new virtual device which you can later run in the emulator.

Xamarin error ios Simulator HE0046: Failed to install the app ... Failed to install the requested application

I changed name of my VS 2019 project running on Mac (from PrismApp1 to something else) and now I can't run on iOS simulator. Tried to run on different simulator phone too. I searched for PrismApp1 in folder and on machine can't find anything... delete bin and obj folders and did a Build All. any ideas?
error HE0046: Failed to install the app 'com.companyname.PrismApp1' on the device 'iOS 13.2 (17B102) - iPhone 11 Pro': Failed to install the requested application
Note: it works if i deploy to my physical iPhone...
I had a similar issue with iPhone 13 emulator and iOS 15, where I couldn't deploy my app on the simulator, but it worked on a real device.
The error I was getting was:
error HE0046: Failed to install the app 'ma.myapp.app' on the device 'iOS 15.0 (19A339) - iPhone 13 mini': “Myapp” Needs To Be Updated
This is how I solved the issue.
I had this weird error after app was successfully compiled and it was simply due to a null variable involved in a plist command executed post build.
Just try to close and reopen VS, it worked for me.

Nativescript: Socket connection timed out

I am on Mac and I want to run my app on a USB-C connected Android device.
My first step is always to remove node_modules, hooks and platforms folders, aswell as package.lock.json file.
After that I run tns build android.
Once the build is completed I either run tns run android or start the application via nativescript sidekick.
But it always ends like this now:
Project successfully built.
Installing on device 5B24000362...
Successfully installed on device with identifier '5B24000362'.
Unable to apply changes on device: 5B24000362. Error is: Socket connection timed out..
Since I had this error already 2 days ago and could not continue working on the App, I updated all nativescript and angular dependencies following this upgrade instructions.
After that update, the app worked again.
But now after a few hours I get the same error again (same app).
I even pushed the app to a git repository after it worked, and recloned it now, does not work.
If you have nativescript-plugin-firebase installed. Just update it with:
$ tns plugin update nativescript-plugin-firebase
I ran into this same issue. Interestingly, in my case, it was because the emulated device did not have enough storage to install the app. As soon as I deleted some other builds off of it, it worked.
Make sure you are using the latest NativeScript tooling, not only the dependencies. You can install the latest CLI by executing npm i -g nativescript.
If the application is not started at all, you can check this answer to a similar issue in NativeScript CLI GitHub repository.
I finally got this working by removing admob from node_modules\nativescript-plugin-firebase\platforms\android\include.gradle
Line to take out:

Nativescript - error on tns run android

I'm trying to run android emulator with the command tns run android. This starts the emulator but it keeps stuck on Android logo and I get the following error:
(...)
BUILD SUCCESSFUL
Total time: 17.013 secs
Project successfully built.
Using C:\(...)\sample-Groceries\platforms\android\build\outputs\apk\sampleGroceries-debug.apk
Starting Android emulator with image Nexus6
Waiting for emulator device initialization..............
Cannot run your app in the native emulator. Increase the timeout of the operation with the --timeout option or try to restart your adb
server with 'adb kill-server' command. Alternatively, run the Android
Virtual Device manager and increase the allocated RAM for the virtual
device.
(...)
Here is my Android Virtual Device configured:
AVD Manager
Note: I can run the application on my phone anyway, but not on my PC.
Finally I found the problem.
In Android Virtual Device Manager, there was an error I didn't see:
AVD Manager error
Here is a solution which I found to be useful.
enter image description here
You just have to manually activate the emulator, which you can do using android studio or command line. Using the command line, you have to run this command
emulator -avd avd_name [ {-option [value]} … ]
for ex:
/Android/sdk/emulator/emulator -avd test
Once the emulator starts you can run this command
tns run android
I started having similar issue after updating to the latest Android Studio and latest emulators. I switched the VM Heap to 64, and it worked for me. May be worth giving that a try.
Open your Android Virtual Device Manager and download the latest
emulator. That will fix the error.
I had the same problem. I fixed that by:
Open emulator manually from Android Studio (double-click on position in AVD Manager list)
Run tns run android
Works for macOS Sierra.

Resources