Skip to content

Commit c0a89a9

Browse files
committed
the zipalign tool is no longer used
1 parent 40af769 commit c0a89a9

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

processing/mode/src/processing/mode/android/AndroidSDK.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -328,18 +328,7 @@ public File getHighestPlatform() {
328328
public File getTargetPlatform(String target) {
329329
return new File(platforms, "android-" + target);
330330
}
331-
332-
333-
public File getZipAlignTool() {
334-
File[] files = buildTools.listFiles();
335-
String name = Platform.isWindows() ? "zipalign.exe" : "zipalign";
336-
for (File f: files) {
337-
File z = new File(f, name);
338-
if (z.exists()) return z;
339-
}
340-
return null;
341-
}
342-
331+
343332

344333
// Write to the process input, so the licenses will be accepted. In
345334
// principle, we only need 7 'y', one for the 'yes' to the first

0 commit comments

Comments
 (0)