Skip to content

Commit 0574ddd

Browse files
committed
updated android search path
1 parent c6facdc commit 0574ddd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/processing/mode/android/AndroidMode.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,9 @@ public String getSearchPath() {
170170

171171
String androidJarPath = sdk.getSdkFolder().getAbsolutePath() +
172172
File.separator + "platforms" + File.separator + "android-" +
173-
AndroidBuild.sdkVersion + File.separator + "android.jar";
174-
return androidJarPath;
173+
AndroidBuild.sdkVersion + File.separator + "android.jar";
174+
String processingAndroidCoreJarPath = new File(getFolder(), "android-core.zip").getAbsolutePath();
175+
return androidJarPath + File.pathSeparatorChar + processingAndroidCoreJarPath;
175176
}
176177

177178

0 commit comments

Comments
 (0)