Titanium 3.1.0 - Emulator process exited with code 1 - Can't compile APK

10,089

If this happens with the Kitchen Sink demo, the fix is to go into the Android SDK Manager and install "Android 3.0 (API 11)". Make sure the app uses emulator "Google APIs (Android 2.3.3)" and "WVGA854". I assume there's a Titanium bug because you have to install a higher API level (3.0) than is actually used (2.3.3). Using exactly these settings, Kitchen Sink works as expected.

Share:
10,089
user486286
Author by

user486286

Updated on June 04, 2022

Comments

  • user486286
    user486286 almost 2 years

    I have this issue with Titanium Studio. I can't compile my project for Android. I try to Run or Debug to project, but I've got this message:

    Titanium Command-Line Interface, CLI version 3.1.0, Titanium SDK version 3.1.0.GA
    Copyright (c) 2012-2013, Appcelerator, Inc.  All Rights Reserved.
    [INFO] :   Running emulator process: python "C:\Users\Dev\AppData\Roaming\Titanium\mobilesdk\win32\3.1.0.GA\android\builder.py" "emulator" "MyApp" "E:\Developpement\Mobile\SDKs\Android" "E:\Developpement\Mobile\Appcelerator\MyApp" "com.developper.myapp" "2" "WVGA854" "armeabi"
    
    [INFO] :   Running build process:  python "C:\Users\Dev\AppData\Roaming\Titanium\mobilesdk\win32\3.1.0.GA\android\builder.py" "simulator" "MyApp" "E:\Developpement\Mobile\SDKs\Android" "E:\Developpement\Mobile\Appcelerator\MyApp" "com.developper.myapp" "2" "WVGA854" "/127.0.0.1:49314"
    
    [INFO] logfile = E:\Developpement\Mobile\Appcelerator\MyApp\build.log
    
    [INFO] Building MyApp for Android ... one moment
    
    [INFO] Titanium SDK version: 3.1.0 (04/15/13 18:45 57634ef)
    
    [ERROR] :  Emulator process exited with code 1
    
    [INFO] :   Project built successfully in 5s 421ms
    
    [INFO] :   Emulator not running, exiting...
    

    The emulator is not starting and no APK file is built in the bin folder. I have the Android 2.2 and 4.2.2 SDK installed. I tried everythings (clean project, even uninstall and reinstall Titanium studio).

    I did this project with Titanium 2.1.4. Now I'm using 3.1.0 and I got this error message. In tiapp.xml, if I choose to run the project with the Titanium 2.1.4 SDK I got these messages :

    [INFO] logfile = E:\Developpement\Mobile\Appcelerator\MyApp\build.log
    
    [INFO] Launching Android emulator...one moment
    
    [INFO] Creating new Android Virtual Device (2 WVGA854)
    
    [ERROR] Exception occured while building Android project:
    
    [ERROR] Traceback (most recent call last):
    
    [ERROR]   File "C:\Users\Dev\AppData\Roaming\Titanium\mobilesdk\win32\2.1.4.GA\android\builder.py", line 2282, in <module>
    
    [ERROR]     s.run_emulator(avd_id, avd_skin, avd_name, avd_abi, add_args)
    
    [ERROR]   File "C:\Users\Dev\AppData\Roaming\Titanium\mobilesdk\win32\2.1.4.GA\android\builder.py", line 523, in run_emulator
    
    [ERROR]     avd_name = self.create_avd(avd_id, avd_skin, avd_abi)
    
    [ERROR]   File "C:\Users\Dev\AppData\Roaming\Titanium\mobilesdk\win32\2.1.4.GA\android\builder.py", line 485, in create_avd
    
    [ERROR]     inifilec = open(inifile,'r').read()
    
    [ERROR] IOError: [Errno 2] No such file or directory: 'C:\\Users\\Dev\\.android\\avd\\titanium_2_WVGA854.avd\\config.ini'
    

    And then :

    [INFO] logfile = E:\Developpement\Mobile\Appcelerator\MyApp\build.log
    
    [INFO] Building MyAppfor Android ... one moment
    
    [INFO] Titanium SDK version: 2.1.4 (11/09/12 12:46 51f2c64)
    
    [ERROR] Application Installer abnormal process termination. Process exit value was 1
    
    [ERROR] Timed out waiting for emulator to be ready, you may need to close the emulator and try again
    

    No emulators are running and no APKs are built. If anyone has an idea...

    I'm using Win7 64bits. Maybe I missed somthing during the configuration.

    Thank you for your help.