Skip to content

Commit 75e8232

Browse files
committed
use correct url for the foundation
1 parent bcc1043 commit 75e8232

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

mode.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = Android Mode
2-
authorList = [The Processing Foundation](http://android.processing.org/)
2+
authorList = [The Processing Foundation](https://processingfoundation.org/)
33
url = http://android.processing.org
44
sentence = Create projects with Processing for Android devices
55
paragraph = This version of the Android Mode is for Processing 3.0+

src/processing/mode/android/AndroidBuild.java

+10
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,17 @@ private void writeRes(File resFolder,
861861
if (new File(resFolder, "drawable-xhdpi").mkdirs()) {
862862
Util.copyFile(localIcon96, buildIcon96);
863863
}
864+
}
865+
if (localIcon144.exists()) {
866+
if (new File(resFolder, "drawable-xxhdpi").mkdirs()) {
867+
Util.copyFile(localIcon144, buildIcon144);
868+
}
864869
}
870+
if (localIcon192.exists()) {
871+
if (new File(resFolder, "drawable-xxxhdpi").mkdirs()) {
872+
Util.copyFile(localIcon192, buildIcon192);
873+
}
874+
}
865875
} catch (IOException e) {
866876
System.err.println("Problem while copying icons.");
867877
e.printStackTrace();

0 commit comments

Comments
 (0)