Hi guys, is there a possibility how can i integrate RapidMiner libraries into Android app? There is my code
public void runRapidMiner(){
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process process = null;
try {
process = new Process(new File("/home/patrik/Plocha/mojSrom.rmp"));
process.run();
} catch (IOException e) {
e.printStackTrace();
} catch (XMLException e) {
e.printStackTrace();
} catch (OperatorException e) {
e.printStackTrace();
}
}
I got RUNTIME error java.lang.NoClassDefFoundError for class: Ljavax/swing/JComponent and for class com.rapidminer.tools.I18N (this class is in included external library),