We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a23474 commit 7caa37fCopy full SHA for 7caa37f
src/processing/mode/android/AndroidMode.java
@@ -161,10 +161,10 @@ public AndroidSDK getSDK() {
161
162
@Override
163
public String getSearchPath() {
164
- String androidJarPath = sdk.getSdkFolder().getAbsolutePath() + "/platforms/"
165
- + "android-" + AndroidBuild.sdkVersion + "/android.jar";
166
-
167
- return super.getSearchPath() + androidJarPath;
+ String androidJarPath = sdk.getSdkFolder().getAbsolutePath() +
+ File.separator + "platforms" + File.separator + "android-" +
+ AndroidBuild.sdkVersion + File.separator + "android.jar";
+ return super.getSearchPath() + File.pathSeparatorChar + androidJarPath;
168
}
169
170
0 commit comments