This repository is under construction, come back later for new updates!
- Prof. Alessandro Ricci, University of Bologna, Italy (WebSite | GitHub)
- Dr. Angelo Croatti, University of Bologna, Italy (WebSite | GitHub)
See the Wiki related to this repository for all information on how to use JaCa-Android for creating MAS-based Android projects.
To let your Android project accessing the JaCa-Android library, chose one of the following options.
Feature not available now. We are working to make JaCa-Android available on Maven Central Repository soon.
- Create a new Android Standard Project using Android Studio IDE
- Download the
jacaandroid-core-release.aar
from this repository from Releases - Copy the AAR into the
/libs
folder of your project - Include into the
build.gradle
file of your module (not the top-leve one) the local repositories access permission
repositories {
flatDir {
dirs 'libs'
}
}
- Include in the same
build.gradle
file following dependences
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//Includes into the project the AAR availble into /libs
implementation (name: 'jacaandroid-core-release', ext:'aar')
//Include the legacy support used by JaCa-Android into the project
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
}