aboutsummaryrefslogtreecommitdiffstats
path: root/sdklauncher
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Add targetPlatform for executable binaries"Xavier Ducrohet2015-02-121-14/+16
| | | | This reverts commit 7f3cb91779907c12d02e8e5c5f4a6a7c510d210e.
* Add targetPlatform for executable binariesRaymond Chiu2015-02-101-16/+14
| | | | | | Make dsl changes due to gradle update. Change-Id: I65729783f5c8f985ed31a231e7dd9a0b9e50f7b3
* Merge "Build and package 32/64bit find_java." into studio-1.0-devXavier Ducrohet2014-11-141-4/+4
|\
| * Build and package 32/64bit find_java.Xavier Ducrohet2014-11-071-4/+4
| | | | | | | | Change-Id: I93a2e42fb0a81d1495bb12b657b6bd6a597a128e
* | find_java now supports 64-bit buildsDavid Herman2014-10-171-0/+64
|/ | | | Change-Id: I46f2462f396c7c2f40238b7da438189b9de02a15
* find_java.sln (and related project files) updatedDavid Herman2014-10-103-193/+113
| | | | | | | | - Paths needed to be updated from find_java to find_java/src/source - Some projects weren't compiling and needed to include references to various .cpp files Change-Id: I495905ef37a693d25cf34410dc395c9ae074b1da
* Fix packagign of sdk launcher exe on win.Xavier Ducrohet2014-06-181-1/+1
| | | | Change-Id: I67584b3aff3f956479488a9345e4407fd21c538c
* AVD/SDK Launchers win build.Xavier Ducrohet2014-06-173-1/+37
| | | | Change-Id: Iacff7f6bfe95a2a95b85cf00cd3e2dd34e5358b6
* SDK Launcher support sdk\tools\android.batRaphael Moll2012-11-193-0/+216
| | | | | | | | | | | | The SDK Launcher is the "SDK Manager.exe" redirector that is copied at the root of an installed SDK. This change the path where it looks for android.bat so that it can also work when placed at the root of an ADT bundle. SDK Bug: 39686 Change-Id: I6222e45be5a3aca62d3557e2f8763c21c07f4f5d
* SDK: remove experimental sdklauncher written in JavaRaphael2011-11-148-509/+0
| | | | Change-Id: I6a73993ecfe5c0faa58172239daf53fec0ab02c0
* SDK Manager Windows: detach from java process.Raphael2011-11-111-139/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes 2 issues: - A bug in android.bat was that the bat+lib were only copied if the arguments were 'update sdk'. However since Tools R14 the sdkmanager doesn't use these arguments anymore. - Consequently when invoked as 'android sdk' it was not copying itself in the temp folder and thus was locking the tools folder, preventing updates. - The new behavior is to always copy, like that we don't care how the app is launched. - The SDK Manager.exe was launching android.bat and then waiting for it to finish, capturing its stdout in care there's an error to display. That locks SDK Manager.exe and thus prevent from updating it too. So instead we just don't wait for the bat to finish, don't capture/display its stdout. If there's an error, the user can still use the command line version to find out what's wrong. SDK Bugs: 21212:SDK Setup.exe [keeps] an open file handle SDK Bugs: 11989:SDK Manager.exe should be able to detach (it doesn't do the part where the sdk manager could restart itself after an update though. I'll file a different issue.) Change-Id: Id473ce58d3f36d417b6c0ee5f07a039adbbe06c0
* AVD Launcher.exe for the Windows SDK.Raphael2011-09-162-10/+9
| | | | | | | | | | | In Tools R14, the Windows SDK will have 2 icons in the root of the SDK: one to launch the AVD window, and a different one to launche the SDK Manager window. I'll need to change the icon in a later CL. I don't have any ICO editor at hand right now. Change-Id: Ic651e3c3d71c2eac5fe851fba8ea2782eca5e594
* Experimental Java-version of the sdk launcher.Raphael Moll2011-08-048-2/+517
| | | | | | | | | | | | | | The goal is to have this in $SDK/tools/lib/sdklauncher.jar with 2 $SDK/SDK Manager|AVD Manager.exe wrappers (built using jsmooth) that will run the launcher.jar, which in turns can run/restart the SDK manager itself or the AVD manager. The original launcher is still available by doing $ USE_MINGW=1 make sdklauncher whereas the new experimenal one is available by doing $ make sdklauncher_exp Change-Id: Iddb6c59b334a6197865f798b3d12fcf70880a141
* Add missing notice files.Xavier Ducrohet2011-03-151-0/+190
| | | | | | | | | | Also fix some makefiles to make sure the notices are picked up. - move the makefile outside of the source folder. - resources are now in the source folder directly instead of being inside src/resources. It's much simpler. Change-Id: Ica8ee4c2bc8a9b035d23fc914d4137cdca7e567d
* SDK: Rename "SDK Setup.exe" to "SDK Manager.exe"Raphael Moll2010-08-231-3/+3
| | | | Change-Id: Id62b59e75e92fe14376353211dd59d89f4ee63c6
* SDK Launcher: add win32 app manifestRaphael Moll2010-08-214-9/+42
| | | | Change-Id: Iac3ad3d28d62c67b15b75346a56c2194f1837096
* SDK Setup fixes.Raphael Moll2010-04-281-22/+61
| | | | | | | | | | | - SDK Setup: cd to the SDK dir, to cope with the case where the setup is executed from a shortcut with a different base directory. - SDK Manager: properly detect "update sdk" and "update avds" commands. Change-Id: I1f0d32fffd71d3fa0856e753a80505f3dcd076d1
* Add missing windres to build SDK Setup.exe using MinGW/LinuxRaphael2010-04-161-1/+8
| | | | | | (This mirrors what we did with the emulator in Change Ib4ce944b ) Change-Id: I09f2e154ff89af4a0ed6629fd20846f20dbd2f5b
* SDK Launcher: capture stdout from batch file.Raphael2010-01-271-23/+170
| | | | Change-Id: Iab4e8f54bf2039cd9a17b1e814ffdc3ccd3deb23
* New "SDK Launcher" for Windows.Raphael2009-10-125-0/+135
This simple .exe will sit at the root of the Windows SDK and currently simply executes tools\android.bat It uses the same icon as the emulator. Eventually it should simply replace the batch file. Change-Id: I5359971fd476d6809d4ccb6bc0a0bcd34e30a3e6