We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40af769 commit c0a89a9Copy full SHA for c0a89a9
processing/mode/src/processing/mode/android/AndroidSDK.java
@@ -328,18 +328,7 @@ public File getHighestPlatform() {
328
public File getTargetPlatform(String target) {
329
return new File(platforms, "android-" + target);
330
}
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
+
343
344
// Write to the process input, so the licenses will be accepted. In
345
// principle, we only need 7 'y', one for the 'yes' to the first
0 commit comments