Coder Social home page Coder Social logo

Comments (17)

shazron avatar shazron commented on May 23, 2024

Hi, can you provide this info: https://github.com/phonegap/ios-deploy/blob/master/CONTRIBUTING.md

Thanks!

from ios-deploy.

asengmany avatar asengmany commented on May 23, 2024

$> sw_vers -productVersion
10.9.4

$> ios-deploy -V
1.1.0

$> xcodebuild -version
Xcode 5.1.1
Build version 5B1008

$> xcode-select --print-path
/Applications/Xcode.app/Contents/Developer

$> gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.3.0
Thread model: posix

$> lldb --version
lldb-310.2.37

And I run this following command to deploy my app : ios-deploy -b path/to/my/app

I tried to specify the id of the device but same error

from ios-deploy.

chuckhacker avatar chuckhacker commented on May 23, 2024

Also experiencing the same issue:

➜ ~ sw_vers -productVersion
10.9.4
➜ ~ ios-deploy -V
1.1.0
➜ ~ xcodebuild -version
Xcode 5.1.1
Build version 5B1008
➜ ~ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
➜ ~ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.3.0
Thread model: posix
➜ ~ lldb --version
lldb-310.2.37

from ios-deploy.

deckmon avatar deckmon commented on May 23, 2024

so do I.

1:~ Alpha$ sw_vers -productVersion
10.9.3
1:~ Alpha$ ios-deploy -V
1.1.0
1:~ Alpha$ xcodebuild -version
Xcode 5.1.1
Build version 5B1008
1:~ Alpha$ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
1:~ Alpha$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.2.0
Thread model: posix
1:~ Alpha$ lldb --version
lldb-310.2.37

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Try version 1.2.0 and report your results.

from ios-deploy.

kiwifruituk avatar kiwifruituk commented on May 23, 2024

I've tried version 1.2.0, but am having the same problem as described above - after running ./ios-deploy -b xxxxxx.app, it gets to about 28 - 32% complete then fails with the following error when trying to copy MyApp to the device:

[28%] Copying /Users/InstallLocation/ios-deploy/ios-deploy/MyApp.app/MyApp to device
Assertion failed: (AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)==0), function handle_device, file ios-deploy.c, line 1378.
...

I can confirm that using other tools (Xcode6 and Apple Configurator) to deploy the app, it deploys just fine.

The problem only seems to be on the iOS7 devices / iOS8 devices seem to work fine.

Info as required:

1. sw_vers -productVersion
10.9.5
2. ios-deploy -V
1.2.0
3. xcodebuild -version
Xcode 6.0
Build version 6A313
4. xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
5. gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.51) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
6. lldb --version
lldb-320.4.124.9

from ios-deploy.

senthilmanick avatar senthilmanick commented on May 23, 2024

Hi All,
After several tests, I found the following:
a. These failures happen when Xcode 6.0 is up and running - Fix: Close Xcode and retry
b. lldb hangs with Xcode 6.0 when -L is used - Fix: in my fork. Asked for pull request
c. Xcode 5.1.1 does not support -L option. ios-deploy and Xcode 6.0 works fine with both iOS 7.1 and 8.0 devices
d. If lldb hangs or get failures, killall lldb and retry. Most probably you were in situation a.

These are my observations and tests.
HTH
Senthil

----- Original Message -----

From: "kiwifruituk" [email protected]
To: "phonegap/ios-deploy" [email protected]
Sent: Friday, October 17, 2014 10:18:38 AM
Subject: Re: [ios-deploy] Assertion failed AMDeviceSecureTransferPath (#56)

I've tried version 1.2.0, but am having the same problem as described above - after running ./ios-deploy -b xxxxxx.app, it gets to about 28 - 32% complete then fails with the following error when trying to copy MyApp to the device:

...
[28%] Copying /Users/InstallLocation/ios-deploy/ios-deploy/MyApp.app/MyApp to device
Assertion failed: (AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)==0), function handle_device, file ios-deploy.c, line 1378.
...

I can confirm that using other tools (Xcode6 and Apple Configurator) to deploy the app, it deploys just fine.

The problem only seems to be on the iOS7 devices / iOS8 devices seem to work fine.

Info as required:

  1. sw_vers -productVersion
    10.9.5
  2. ios-deploy -V
    1.2.0
  3. xcodebuild -version
    Xcode 6.0
    Build version 6A313
  4. xcode-select --print-path
    /Applications/Xcode.app/Contents/Developer
  5. gcc --version
    Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
    Apple LLVM version 6.0 (clang-600.0.51) (based on LLVM 3.5svn)
    Target: x86_64-apple-darwin13.4.0
    Thread model: posix
  6. lldb --version
    lldb-320.4.124.9


Reply to this email directly or view it on GitHub .

from ios-deploy.

kiwifruituk avatar kiwifruituk commented on May 23, 2024

Hi Senthilmanick for your quick reply. I've tried you're suggested solutions but none of them seemed to fix the issue:

a. I tried closing Xcode 6.0 and redeploying it, but no luck. I then restarted my computer and tried it again (without opening Xcode)
b. I'm not currently using the -L flag
c. I ran the 'killall lldb' command but there are no matching processes found

Any further help would be greatly appreciated!

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Try to filter for lldb in the Activity Monitor app and kill any lldb processes.

Also, version 1.3.0 has been published with lots of bug fixes (thanks @senthilmanick). Try it out.

from ios-deploy.

molinadavid avatar molinadavid commented on May 23, 2024

Hi all,

I have the same problem with my application and after google it for a while without any luck I remembered that I have changed the application name on the config.xml file in order to use a Japanese name as for the customer's requirements. Long story short after I changed the name back to english it worked without any type of problem.

I suppose until something can be done about this bug I will have to change the name manually on Xcode before compiling the final version.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

That's a good clue, thanks @molinadavid -- the code is probably not handling non-ASCII characters well

from ios-deploy.

ilyakar avatar ilyakar commented on May 23, 2024

Hi. How close are you guys to fixing this issue? My app name is Cityfé and I also get the following error: Assertion failed: (AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)==0), function handle_device, file ios-deploy.c, line 1550.

from ios-deploy.

matrunchyk avatar matrunchyk commented on May 23, 2024

Hi. The same issue:

2015-06-15 19:03:19.848 ios-deploy[6111:1106188] [ !! ] Error 0xe8000008: ◊esˇ AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)

This is my environment:

$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.10.3
BuildVersion: 14D136

$ ios-deploy -V
1.7.0

$ xcodebuild -version
Xcode 7.0
Build version 7A120f

$ xcode-select --print-path
/Applications/Xcode-beta.app/Contents/Developer/

$ gcc --version
Configured with: --prefix=/Applications/Xcode-beta.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.0.53)
Target: x86_64-apple-darwin14.3.0
Thread model: posix

$ lldb --version
lldb-340.4.44

from ios-deploy.

matrunchyk avatar matrunchyk commented on May 23, 2024

@molinadavid @shazron Oh yeah, thank you guys! I renamed my Ukrainian name to English name and it worked! Yay!

from ios-deploy.

sergeychernyshev avatar sergeychernyshev commented on May 23, 2024

Hitting same problem - name of my app is in cyrillics and I get AMDeviceSecureTransferPath error. XCode works fine.

from ios-deploy.

pluswave avatar pluswave commented on May 23, 2024

same issue on my env.

localhost:~ $ sw_vers -productVersion
10.10.4
localhost:~ $ ios-deploy -V
1.7.0
localhost:~ $ xcodebuild -version
Xcode 6.4
Build version 6E35b
localhost:~ $ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
localhost:~ $ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.4.0
Thread model: posix
localhost:~ $ lldb --version
lldb-330.0.48

from ios-deploy.

jackytse avatar jackytse commented on May 23, 2024

localhost:~ $ sw_vers -productVersion
10.10.5
localhost:~ $ ios-deploy -V
1.7.0
localhost:~ $ xcodebuild -version
Xcode 6.4
Build version 6E35b
localhost:~ $ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
localhost:~ $ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
localhost:~ $ lldb --version
lldb-330.0.48

the same error.

from ios-deploy.

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.