android - Titanium Build Error Invalid Device -
I recently updated my Android SDK to the latest available and since I try to make me The following error is found on the command line and my Samsung Galaxy S3:
$ Titanium Build-P Android-T Device- C - Device-ID 6f01b9ae
Titanium Command Line Interface, CLI Version 3.4.0, Titanium SDK Version 3.4.0.ga
Copyright (C) 2012-2014, Epicylator, Inc. All rights reserved. [Error]: Invalid "- Device-ID" value of "6f01b9ae"
For help, run: Titanium Support Build
Anyone can try to get me this past? I am very stuck and would really appreciate some help. Thanks!
Since titanium tooling uses Android's ADB to push your device, run first
ADB device
Verify that the device is seen by ADB and the ID which you are using matches.
Second, -C and - Device IDs are the same flag and do not need to be repeated. These are:
$ titanium build-p android -t device- c 6f01b9ae $ titanium build -p android -t device - device-id 6f01b9ae
Comments
Post a Comment