AIDE Problem | Doesn't support remote maven repository | Solution
AIDE does not support remote maven repos. The only way you can make maven repositories work within the app is create a local maven repo. This is as simple as copying a folder from PC to Device if the library you need is in /sdk-path/extras/ (Android and Google libs are there), but a bit more difficult if it is not: I had success manually creating a maven repository using these steps: Download the following files from the right subdir on jcenter.bintray.com : maven-metadata.xml artifact-name-version.aar artifact-name-version.pom Create a new folder on your device and call it m2repository Open maven-metadata.xml and remember the groupId , artifactId and version Create folders for every component of the groupId inside your m2repository (e.g. groupId = com.github.test, folder structure: com/github/test) Inside of the folder structure (e.g. folder test ) , create a folder named after the artifactId ...