upload android base code part9

This commit is contained in:
August 2018-08-08 20:16:11 +08:00
parent 5425409085
commit 071cdf34cd
2679 changed files with 329442 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>plugin-adt-package</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>

View file

@ -0,0 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: ADT Package
Bundle-SymbolicName: com.android.ide.eclipse.adt.package;singleton:=true
Bundle-Version: 24.3.3.qualifier
Bundle-Vendor: The Android Open Source Project
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Eclipse-BundleShape: dir
Require-Bundle: org.eclipse.platform,
org.eclipse.equinox.app

View file

@ -0,0 +1,5 @@
aboutText=%blurb
featureImage=icons/adt32.png
windowImage=icons/adt16.png
aboutImage=adt-about.png
appName=ADT

View file

@ -0,0 +1,6 @@
blurb=Android Developer Tools\n\
\n\
Build: {0}\n\
\n\
Copyright (c) The Android Open Source Project.\n\
Visit http://developer.android.com and http://source.android.com

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,11 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
plugin.xml,\
.,\
plugin_customization.ini,\
adt-about.png,\
splash.bmp,\
icons/,\
about.ini,\
about.properties

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="adtproduct"
name="ADT Bundle"
point="org.eclipse.core.runtime.products">
<product
application="org.eclipse.ui.ide.workbench"
name="Eclipse">
<property
name="preferenceCustomization"
value="plugin_customization.ini" />
<property
name="appName"
value="Eclipse" />
<property
name="aboutImage"
value="adt-about.png">
</property>
<property
name="aboutText"
value="Android Developer Tools&#x0A;&#x0A;This product includes Eclipse Platform, JDT, CDT, EMF, GEF and WTP, all of which are&#x0A;Copyright (c) Eclipse contributors and others.&#x0A;Visit http://eclipse.org/&#x0A;&#x0A;Android Developer Tools are Copyright (c) The Android Open Source Project.&#x0A;Visit http://developer.android.com">
</property>
<property
name="startupProgressRect"
value="216,229,170,4" />
<property
name="startupMessageRect"
value="216,240,265,30" />
<property
name="startupForegroundColor"
value="999999" />
<property
name="windowImages"
value="icons/adt16.png,icons/adt32.png,icons/adt48.png">
</property>
<property
name="introBrandingImage"
value="product:intro-eclipse.png">
</property>
<property
name="introTitle"
value="Welcome to the Eclipse IDE for Android Developers">
</property>
<property
name="introBrandingImageText"
value="Eclipse Project">
</property>
<property
name="applicationXMI"
value="org.eclipse.platform/LegacyIDE.e4xmi">
</property>
<property
name="cssTheme"
value="org.eclipse.e4.ui.css.theme.e4_default">
</property>
<property
name="applicationCSSResources"
value="platform:/plugin/org.eclipse.ui.themes/images/">
</property>
</product>
</extension>
<extension
point="org.eclipse.ui.intro">
<introProductBinding
introId="org.eclipse.ui.intro.universal"
productId="com.android.ide.eclipse.adt.package.product">
</introProductBinding>
</extension>
</plugin>

View file

@ -0,0 +1,8 @@
org.eclipse.ui/defaultPerspectiveId=org.eclipse.jdt.ui.JavaPerspective
org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
org.eclipse.ui/PERSPECTIVE_BAR_EXTRAS=com.android.ide.eclipse.ddms.Perspective
org.eclipse.ui/PERSPECTIVE_BAR_SIZE=250
org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = false
org.eclipse.ui.workbench/SHOW_BUILDID_ON_STARTUP=true
org.eclipse.ui/SHOW_MEMORY_MONITOR=true

View file

@ -0,0 +1,17 @@
<?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>com.android.ide.eclipse.adt.package</artifactId>
<packaging>eclipse-plugin</packaging>
<name>adt.package</name>
<parent>
<relativePath>../../pom.xml</relativePath>
<groupId>adt.group</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 440 KiB