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 03052b8 commit df0c0b9Copy full SHA for df0c0b9
src/processing/mode/android/AndroidMode.java
@@ -161,15 +161,10 @@ public AndroidSDK getSDK() {
161
162
@Override
163
public String getSearchPath() {
164
- StringBuilder tehPath = new StringBuilder(super.getSearchPath());
165
- tehPath.append(File.pathSeparator);
166
-
167
String androidJarPath = sdk.getSdkFolder().getAbsolutePath() + "/platforms/"
168
+ "android-" + AndroidBuild.sdkVersion + "/android.jar";
169
- System.out.println("androidJarPath = " + androidJarPath);
170
- tehPath.append(androidJarPath);
171
172
- return tehPath.toString();
+
+ return super.getSearchPath() + androidJarPath;
173
}
174
175
0 commit comments