Languages

Menu
Sites
Language
[SOLVED] tpk package created is not accepted on app seller store

Unless a Tizen device is connected to the PC and the same is selecteed in the Connection Explorer, by default IDE creates the tpk package with XXX-ix86.tpk.

This tpk will not be installable on device and hence gets rejected by the app store. Does anyone know how to build a xxx-arm.tpk without connecting any device to the IDE?

 

- Mahesh

Edited by: Mahesh Lingsugur on 26 Dec, 2013

Responses

5 Replies
konduri sai swathi

Hi,

Try building it in Emulator. Launch an emulator from the connection explorer window. First create an emulator and name it and then launch it. 

For help refer : https://developer.tizen.org/dev-guide/2.2.0/org.tizen.gettingstarted/html/dev_env/connection_explorer.htm

 

Alexander AVSukhov

Hello,

Try following:

Right-click on the project -> Properties -> C/C++ Build -> Tizen Settings -> Architecture

Mahesh Lingsugur

Thank you Alexander, I could create arm package.

T S

Hi,

How to Build package for ARM without connecting to device.
1. Set target to "Debug"/"Release" from
"Select Project and right click" ->Build Configurations -> Set Active -> Debug/Release
2. Set build configuration,
    "Select Project and right click" -> Properties -> C/C++ Build -> Tizen Settings
    Under platform section
    
----- Confirm Settings for ARM as below ------
 
 Configuration: Debug (active)/ Release (active)
 Platform : Tizen 2.2
 Architecture :  ARMv7-a
 Name : Tizen Device 2.2
 
 Toolchain Information -
 Name : LLVM-3.1
-----------------------------------------------
 Select OK
 
 3. Now build the app, "Select Project and right click" -> Build project
 4. TPK file generated for Device
 "Select Project and right click" -> Build Package -> TPK
 
 5. Submit the *.tpk file to store from {project root}\Release directory.
 Device TPK will be in this form "PackageID-VersionNo-arm.tpk"  
 
 ~Sanjana T S

Mahesh Lingsugur

Thanks Sanjana.