Giter Club home page Giter Club logo

Comments (33)

victorypoint avatar victorypoint commented on July 20, 2024 1

If you can do ADB via a USB cable and wireless, there are many Reddit posts with suggestions to try such as this one - https://stackoverflow.com/questions/37267335/android-studio-wireless-adb-error-10061. Hopefully there is something in there that will help.

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024 1

Installation successful with method 2 (witch adb).
Before and after treadmill power cycle, the application launch failed with following message :
Unfortunately , QZ Companion Norditrack Treadmill has stopped

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024 1

hi @vauhallan I need a debug report to understand which is the issue. Also did you allow all the permission to the companion in the tablet settings?

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

could you please post all the log? are you using this version https://github.com/cagnulein/QZCompanionNordictrackTreadmill/tree/master/InstallPackage ?

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

which error do you have installing it directly?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

Here the logs :

Log generated at 14:51:07,42 16/10/2022 for IP 192.168.1.234

Pinging 192.168.1.234 ...

Pinging 192.168.1.234 with 32 bytes of data:
Reply from 192.168.1.234: bytes=32 time=63ms TTL=64

Ping statistics for 192.168.1.234:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 63ms, Maximum = 63ms, Average = 63ms

Connecting to treadmill via ADB ...

disconnected everything

  • daemon not running; starting now at tcp:5037
  • daemon started successfully
    cannot connect to 192.168.1.234:5555: No connection could be made because the target machine actively refused it. (10061)

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

maybe adb over ip is not available on your tablet. can you try with the adb push function?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

Adb connect failed from a linux devices (impossbile to go to phush fonction)
root@rpi2:~# adb connect 192.168.1.234:5555
failed to connect to '192.168.1.234:5555': Connection refused

Do you have an apk installed on Android Lollipop ? I can download it directly from tablet's browser....

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

Adb connect failed from a linux devices (impossbile to go to phush fonction)
root@rpi2:~# adb connect 192.168.1.234:5555
failed to connect to '192.168.1.234:5555': Connection refused

use the usb cable instead of the ip

Do you have an apk installed on Android Lollipop ? I can download it directly from tablet's browser....

what's happen when you install it? what does it show?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

Adb connect failed from a linux devices (impossbile to go to phush fonction)
root@rpi2:~# adb connect 192.168.1.234:5555
failed to connect to '192.168.1.234:5555': Connection refused

use the usb cable instead of the ip

Do you have an apk installed on Android Lollipop ? I can download it directly from tablet's browser....

what's happen when you install it? what does it show?

The error message is parse error : there was a problem parsing the package

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@vauhallan just to be sure, are you sure you're using the apk contained here https://github.com/cagnulein/QZCompanionNordictrackTreadmill/tree/master/InstallPackage ?

from qzcompanionnordictracktreadmill.

victorypoint avatar victorypoint commented on July 20, 2024

Wireless ADB is tricky with some tablets. Can you confirm your computer and your tablet are connected via WiFi to same wireless router and not one to wifi and other to Ethernet,?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

Wireless ADB is tricky with some tablets. Can you confirm your computer and your tablet are connected via WiFi to same wireless router and not one to wifi and other to Ethernet,?

Yes confirmed. Same SSID wifi and same network

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

@vauhallan just to be sure, are you sure you're using the apk contained here https://github.com/cagnulein/QZCompanionNordictrackTreadmill/tree/master/InstallPackage ?

Yes

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@vauhallan did you try using the USB cable?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

@vauhallan did you try using the USB cable?

Yes without success:
1- No device list displays on "adb.exe devices "
2- No new device entry on "Device Manager" (PC)

For your information concerning tablet :
Model number : AOSP on Drone
Android version : 5.1.1
Kernel Version : 3.4.39
Bulld number : 20180301

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

are you sure that developer options and adb are enabled in the tablet settings? (stupid questions I know) @vauhallan

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

are you sure that developer options and adb are enabled in the tablet settings? (stupid questions I know) @vauhallan

YEs on developper mode and USB debugging....

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

did you check the @victorypoint thread? @vauhallan

from qzcompanionnordictracktreadmill.

victorypoint avatar victorypoint commented on July 20, 2024

I've just added an additional file to the install package at https://github.com/cagnulein/QZCompanionNordictrackTreadmill/tree/master/InstallPackage. I was having trouble establishing an ADB connection to a couple of my Android phones. The solution was to establish an ADB connection with USB cable connected first (the additional AdbWinUsbApi.dll file is required) to establish a trust. Then all subsequent ADB connections over Wifi worked.

Within the Install Package folder, use the following sequence to try a connection with USB cable connected:

ping [IP of Android device]
adb disconnect
adb kill-server
adb connect [IP of Android device]
adb devices -l

Hope this may help you @vauhallan

from qzcompanionnordictracktreadmill.

nreichenbach avatar nreichenbach commented on July 20, 2024

Hello, On a Nordictrack S10i, i have the same problem than @vauhallan
IMG_8519
IMG_8520

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@nreichenbach are you sure you are using this apk 390da38 ?

from qzcompanionnordictracktreadmill.

nreichenbach avatar nreichenbach commented on July 20, 2024

IMG_0416

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

ok @nreichenbach could you provide a adb logcat?

from qzcompanionnordictracktreadmill.

nreichenbach avatar nreichenbach commented on July 20, 2024

@cagnulein , sorry i don't know how to do it ? im on OSX

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@nreichenbach check here for install adb on mac https://www.xda-developers.com/install-adb-windows-macos-linux/

from qzcompanionnordictracktreadmill.

nreichenbach avatar nreichenbach commented on July 20, 2024

Ty, but sorry i have an iMac 27" far away from my bike and i don't have and long usb cable and i don't have Wireless debugging on my Android.

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@nreichenbach adb logcat or a bug report directly from the tablet is needed in order to understand the issue

i don't know if your tablet can take a bug report

let me know

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

@nreichenbach @vauhallan i should have fixed this with the last apk. could you please try it?

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

@nreichenbach @vauhallan i should have fixed this with the last apk. could you please try it?

The installation is working file now .
But I have a issue concerning the choice of my treadmill. I can’t validate my choice .
Uploading D435D7E8-F0FA-4D97-BA37-3094ED58714C.jpeg…

from qzcompanionnordictracktreadmill.

vauhallan avatar vauhallan commented on July 20, 2024

BCCDA9F1-D98D-4F52-9396-C3F5B9D848D6

from qzcompanionnordictracktreadmill.

cagnulein avatar cagnulein commented on July 20, 2024

yes because i didn't add a specific profile for your treadmill yet. did you see now the metrics on the qz app on the phone?

from qzcompanionnordictracktreadmill.

stale avatar stale commented on July 20, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from qzcompanionnordictracktreadmill.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.