summaryrefslogtreecommitdiff
path: root/plugins/mobile/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mobile/build.xml')
-rw-r--r--plugins/mobile/build.xml13
1 files changed, 5 insertions, 8 deletions
diff --git a/plugins/mobile/build.xml b/plugins/mobile/build.xml
index 569a490..52acad8 100644
--- a/plugins/mobile/build.xml
+++ b/plugins/mobile/build.xml
@@ -7,13 +7,11 @@
<property name="profile" value="mobile"/>
<property name="plugin.file" value="em-plugin-${profile}.jar" />
- <property name="item.factory" value="org.tizen.emulator.manager.${profile}.ui.detail.ItemListFactory" />
<property name="vm.worker" value="org.tizen.emulator.manager.${profile}.vms.VMWorker" />
- <property name="vmbutton.painter" value="org.tizen.emulator.manager.${profile}.ui.widget.VMButtonPainter" />
- <property name="option.factory" value="org.tizen.emulator.manager.${profile}.vms.option.OptionFactory" />
+ <property name="option.factory.v2" value="org.tizen.emulator.manager.${profile}.vms.option.OptionFactoryV2" />
<path id="plugin-classpath">
- <fileset dir="${common.libpath}" includes="swt.jar,emulator-manager.jar" />
+ <fileset dir="${common.libpath}" includes="emulator-manager.jar" />
</path>
<target name="clean">
@@ -43,11 +41,10 @@
<jar jarfile="${plugin.file}" basedir="${build.dir}" duplicate="add">
<manifest>
<attribute name="Platform-Version" value="${platform.version}"/>
- <attribute name="Platform-Profile" value="${profile}"/>
- <attribute name="Item-Factory" value="${item.factory}"/>
+ <attribute name="Platform-Profile" value="${profile}"/>
<attribute name="VM-Worker" value="${vm.worker}" />
- <attribute name="VMButton-Painter" value="${vmbutton.painter}" />
- <attribute name="Option-Factory" value="${option.factory}" />
+ <attribute name="Option-Factory-v2" value="${option.factory.v2}" />
+ <attribute name="Package-Version" value="${package.version}" />
</manifest>
</jar>
</target>