We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6facdc commit 0574dddCopy full SHA for 0574ddd
src/processing/mode/android/AndroidMode.java
@@ -170,8 +170,9 @@ public String getSearchPath() {
170
171
String androidJarPath = sdk.getSdkFolder().getAbsolutePath() +
172
File.separator + "platforms" + File.separator + "android-" +
173
- AndroidBuild.sdkVersion + File.separator + "android.jar";
174
- return androidJarPath;
+ AndroidBuild.sdkVersion + File.separator + "android.jar";
+ String processingAndroidCoreJarPath = new File(getFolder(), "android-core.zip").getAbsolutePath();
175
+ return androidJarPath + File.pathSeparatorChar + processingAndroidCoreJarPath;
176
}
177
178
0 commit comments