diff options
Diffstat (limited to 'eclipse/plugins')
4 files changed, 10 insertions, 10 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/.classpath b/eclipse/plugins/com.android.ide.eclipse.adt/.classpath index fcf27a5..4476b4c 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/.classpath +++ b/eclipse/plugins/com.android.ide.eclipse.adt/.classpath @@ -14,9 +14,9 @@ <classpathentry exported="true" kind="lib" path="libs/manifest-merger.jar" sourcepath="/ManifestMerger"/> <classpathentry exported="true" kind="lib" path="libs/lombok-ast-0.2.2.jar"/> <classpathentry exported="true" kind="lib" path="libs/propertysheet.jar"/> - <classpathentry exported="true" kind="lib" path="libs/asm-4.0.jar"/> - <classpathentry exported="true" kind="lib" path="libs/asm-analysis-4.0.jar"/> - <classpathentry exported="true" kind="lib" path="libs/asm-tree-4.0.jar"/> + <classpathentry exported="true" kind="lib" path="libs/asm-5.0.3.jar"/> + <classpathentry exported="true" kind="lib" path="libs/asm-analysis-5.0.3.jar"/> + <classpathentry exported="true" kind="lib" path="libs/asm-tree-5.0.3.jar"/> <classpathentry exported="true" kind="lib" path="libs/swtmenubar.jar"/> <classpathentry kind="output" path="bin"/> </classpath> diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF b/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF index 9c8158b..5f20b0f 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF +++ b/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF @@ -12,9 +12,9 @@ Bundle-ClassPath: ., libs/lint-api.jar, libs/lint-checks.jar, libs/lombok-ast-0.2.2.jar, - libs/asm-4.0.jar, - libs/asm-tree-4.0.jar, - libs/asm-analysis-4.0.jar, + libs/asm-5.0.3.jar, + libs/asm-tree-5.0.3.jar, + libs/asm-analysis-5.0.3.jar, libs/propertysheet.jar, libs/ant-glob.jar, libs/swtmenubar.jar, diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ProjectClassLoader.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ProjectClassLoader.java index 38460a4..e07f099 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ProjectClassLoader.java +++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ProjectClassLoader.java @@ -177,7 +177,7 @@ public final class ProjectClassLoader extends ClassLoader { public static byte[] rewriteClass(byte[] classData, final int maxVersion, final int minVersion) { assert maxVersion >= minVersion; ClassWriter classWriter = new ClassWriter(0); - ClassVisitor classVisitor = new ClassVisitor(Opcodes.ASM4, classWriter) { + ClassVisitor classVisitor = new ClassVisitor(Opcodes.ASM5, classWriter) { @Override public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) { diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/.classpath b/eclipse/plugins/com.android.ide.eclipse.tests/.classpath index 83bfa23..af8e888 100644 --- a/eclipse/plugins/com.android.ide.eclipse.tests/.classpath +++ b/eclipse/plugins/com.android.ide.eclipse.tests/.classpath @@ -17,8 +17,8 @@ <classpathentry kind="lib" path="/plugin-adt/libs/lint-checks.jar" sourcepath="/lint-checks"/> <classpathentry kind="lib" path="/plugin-base/libs/sdk-common.jar"/> <classpathentry kind="lib" path="/plugin-adt/libs/lombok-ast-0.2.2.jar"/> - <classpathentry kind="lib" path="/plugin-adt/libs/asm-4.0.jar"/> - <classpathentry kind="lib" path="/plugin-adt/libs/asm-analysis-4.0.jar"/> - <classpathentry kind="lib" path="/plugin-adt/libs/asm-tree-4.0.jar"/> + <classpathentry kind="lib" path="/plugin-adt/libs/asm-5.0.3.3.3.jar"/> + <classpathentry kind="lib" path="/plugin-adt/libs/asm-analysis-5.0.3.jar"/> + <classpathentry kind="lib" path="/plugin-adt/libs/asm-tree-5.0.3.jar"/> <classpathentry kind="lib" path="/plugin-adt/libs/manifest-merger.jar" sourcepath="/manifest-merger"/> </classpath> |