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 885f6d8 commit b3439d0Copy full SHA for b3439d0
src/processing/mode/android/AndroidMode.java
@@ -157,6 +157,20 @@ public void checkSDK(Editor parent) {
157
public AndroidSDK getSDK() {
158
return sdk;
159
}
160
+
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();
173
+ }
174
175
176
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
0 commit comments