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.
2 parents d99cc6e + df0c0b9 commit 4a23474Copy full SHA for 4a23474
src/processing/mode/android/AndroidMode.java
@@ -157,6 +157,15 @@ public void checkSDK(Editor parent) {
157
public AndroidSDK getSDK() {
158
return sdk;
159
}
160
+
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;
168
+ }
169
170
171
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
0 commit comments