After following "Your first Kaa application" step-by-step guide at this link, I wished to develop a custom Java Kaa application using IntelliJ IDEA.
But, unfortunately, I couldn't find any way to setup my IDE in order to use its basic features (such as smart completion).
Can anyone suggest me a tutorial or a guide that could help me reaching my goal?
I really appreciate any help you can provide.
At the end, that's what I suggest to do after some research and some trials:
1) Create a new empty Java Project in IntelliJ IDEA
2) Generate and download Kaa Java Endpoint SDK archive file (follow Your first Kaa application guide for further informations)
3) Create a 'libs' folder in your Java project and move the .jar (something like kaa-java-ep-sdk-***.jar) in it
4) Create FirstKaaDemo.java file in 'src' folder and paste suggested Java application code in it.
5) Right-click on your project and Open Module Settings.
6) Add new JAR dependency and select your .jar file in 'libs' folder
This will solve every import error.
Hope this will help someone.