upload android base code part9
This commit is contained in:
parent
5425409085
commit
071cdf34cd
2679 changed files with 329442 additions and 0 deletions
11
android/sdk/eclipse/artifacts/bundles/.project
Normal file
11
android/sdk/eclipse/artifacts/bundles/.project
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>tycho-bundles</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
61
android/sdk/eclipse/artifacts/bundles/monitor.product
Normal file
61
android/sdk/eclipse/artifacts/bundles/monitor.product
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
|
||||
<product name="monitor" uid="monitorproduct" id="com.android.ide.eclipse.monitor.product" application="com.android.ide.eclipse.monitor.Application" version="24.3.3.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
<launcherArgs>
|
||||
<programArgs>-data @noDefault</programArgs>
|
||||
<vmArgs>-XX:MaxPermSize=256m
|
||||
-Xms512m
|
||||
-Xmx1024m</vmArgs>
|
||||
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
|
||||
</launcherArgs>
|
||||
|
||||
<windowImages/>
|
||||
|
||||
<splash
|
||||
location="com.android.ide.eclipse.monitor" />
|
||||
<launcher name="monitor">
|
||||
<solaris/>
|
||||
<win useIco="false">
|
||||
<bmp/>
|
||||
</win>
|
||||
</launcher>
|
||||
|
||||
|
||||
<vm>
|
||||
</vm>
|
||||
|
||||
|
||||
<plugins>
|
||||
</plugins>
|
||||
|
||||
<features>
|
||||
<feature id="com.android.ide.eclipse.ddms.feature"/>
|
||||
<feature id="com.android.ide.eclipse.gldebugger.feature"/>
|
||||
<feature id="com.android.ide.eclipse.hierarchyviewer.feature"/>
|
||||
<feature id="com.android.ide.eclipse.traceview.feature"/>
|
||||
<feature id="com.android.ide.eclipse.monitor.feature"/>
|
||||
<feature id="org.eclipse.rcp"/>
|
||||
<feature id="org.eclipse.emf.ecore"/>
|
||||
<feature id="org.eclipse.e4.rcp"/>
|
||||
<feature id="org.eclipse.emf.common"/>
|
||||
<feature id="org.eclipse.platform"/>
|
||||
<feature id="org.eclipse.equinox.p2.core.feature"/>
|
||||
<feature id="org.eclipse.help"/>
|
||||
<feature id="org.eclipse.equinox.p2.rcp.feature"/>
|
||||
<feature id="org.eclipse.equinox.p2.extras.feature"/>
|
||||
<feature id="org.eclipse.equinox.p2.user.ui"/>
|
||||
</features>
|
||||
|
||||
<configurations>
|
||||
<plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="2" />
|
||||
<plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
|
||||
<plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
|
||||
</configurations>
|
||||
|
||||
</product>
|
58
android/sdk/eclipse/artifacts/bundles/pom.xml
Normal file
58
android/sdk/eclipse/artifacts/bundles/pom.xml
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<version>24.3.3-SNAPSHOT</version>
|
||||
<artifactId>bundles</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
<name>bundles</name>
|
||||
|
||||
<parent>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<groupId>adt.group</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-p2-director-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<!-- install the product for all configured os/ws/arch environments
|
||||
using p2 director -->
|
||||
<execution>
|
||||
<id>materialize-products</id>
|
||||
<goals>
|
||||
<goal>materialize-products</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<!-- create product zips (one per os/ws/arch) -->
|
||||
<execution>
|
||||
<id>archive-products</id>
|
||||
<goals>
|
||||
<goal>archive-products</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<formats>
|
||||
<win32>zip</win32>
|
||||
<linux>zip</linux>
|
||||
<macosx>zip</macosx>
|
||||
</formats>
|
||||
<products>
|
||||
<product>
|
||||
<id>monitorproduct</id>
|
||||
<attachId>com.android.ide.eclipse.monitor.product</attachId>
|
||||
<rootFolder>monitor</rootFolder>
|
||||
</product>
|
||||
</products>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
Loading…
Add table
Add a link
Reference in a new issue