Hello I was wonder the following
- would you be open on trying to support Aide(An IDE on google play, I like using it because It ran natively on my android device and IMHO it works better then eclipse for me)?
Details:
By downgrade a few library files I was able to compile this in Aide and by remming out
//Date buildDate = BuildConfig.buildTime;
and replace it with
Date buildDate = new Date("5/2/18");
and some other minor changes.
. I also Added code in Activite_welcome.xml and some other files i was able to git debugging working. I got most of my info on binding to a spelling service from here...
https://www.tutorialspoint.com/android/android_spelling_checker.htm
- Would you have anything against excepting adding an editText In welcomeActivity app that allows for debugging without the need to use WAIT_FOR_DEBUGER_ATTACH command in Language tools code?
Details How:
In order To get debug working on the service I had to add an editText to welcomeActivity.java I was thinking about adding a button to turn on/off spelling request.(useful for debugging if spell check crashes something)
I was think to add text in The editText That states"Even though after following the above steps everything should work automatically this app is used to help debug LanguageTool spell service") I was think about adding a combobox to test different language and add an Intent to allow you to select the languages you want beside the defaults.
What i am doing to get debugging working is use the welcomeActivity App to bind to the service so I can debug it, wich allows me to follow and debug the service.
I got the info how to do so from here
https://www.tutorialspoint.com/android/android_spelling_checker.htm
If anyone want to use aide to build this I created a fork it changes very little in code. It took me a bunch of time to figure out it was to new of libraries (gradle and layout library causing the problem)