still nothing on that front.... so i can't add the jar, so i created a project UtilsApp, and inside a library project nohutils...
Now since i can't use the filebrowser to add this library to another project (due to immediate crash of AIDE when changing drectories), i try to create this by hand.... but fail....
i added after the add app in the topmost settings.gradle:
include ':app'
include ':nohutils'
project(':nohutils').projectDir = new File(rootProject.projectDir, '../UtilsApp/nohutils')
and in the app/build.gradle i added:
dependencies {
compile project(':nohutils')
compile fileTree(dir: 'libs', include: ['*.jar'])
}
but it fails with the error:
"Project dependency ':nohutils' not found" ....
since i still haven't found the correct manual (not that i found any concerning AIDE, if anybody has something or a link to something that looks like a manual for it i will take it gladly) i am stuck....
since i fail to see the flaw in the above logic... from what i gathered through stackoverflow, once you declared your project, you can use it freely as if it was local.....
so any pointer welcome!