Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.erxes:erxes-android-sdk:0.20.10'
}
dependencies {
implementation("com.github.erxes:erxes-android-sdk:0.20.10")
}
<dependency>
<groupId>com.github.erxes</groupId>
<artifactId>erxes-android-sdk</artifactId>
<version>0.20.10</version>
</dependency>
libraryDependencies += "com.github.erxes" % "erxes-android-sdk" % "0.20.10"
:dependencies [[com.github.erxes/erxes-android-sdk "0.20.10"]]
erxes is a secure, self-hosted, and scalable open-source experience operating system (XOS) that enables SaaS providers and digital marketing agencies/developers to create unique experiences that work for all types of business. You can learn more about <a href="https://docs.erxes.io/docs/introduction/architecture">erxes architecture in our documentation</a>.
<a href="https://demo.erxes.io/">Live demo</a> <b>| </b> <a href="https://community.erxes.io/register/Gw4WRJnk9fSbyAXTq">Join our community</a>
erxes (pronounced 'erk-sis') means "heavenly bodies" in Mongolian. It is branded as “erxes” with all lowercase letters.
erxes is composed of 2 main components: XOS & Plugins
XOS: It contains the project's core. You can find the admin panel and the code that runs different plugins. The operating system comes with utility features that allow users to customize, improve speed, and enhance the experience along with plugins/features.
Plugins: erxes comes with a set of plugins that allow you to create unique customer experiences. Below is a list of some plugins you can choose from our <a href="https://erxes.io/marketplace" >marketplace</a> after you’ve finished installing erxes XOS:
Read <a href="https://docs.erxes.io/docs/intro" >the documentation<a> to install erxes locally.
🖐 Requirements
Complete installation requirements can be found in the documentation under <a href="https://docs.erxes.io/docs/intro" >installation requirements</a>.
Supported operating systems:
Node:
Database:
Software package managing systems:
We recommend always using the latest version of erxes to start your new projects. Enjoy 🎉
Offer your expertise to the world and introduce your community to erxes. Let’s start growing <a href="https://erxes.io/partners">together</a>.
Please read our <a href="https://github.com/erxes/erxes/blob/master/CONTRIBUTING.md" >contributing guide<a> before submitting a Pull Request to the project.
For general help using erxes, please refer to the erxes documentation. For additional help, you can use one of these channels to ask a question:
Follow our <a href="https://docs.erxes.io/docs/update/">upgrade guides</a> on the documentation to keep your erxes code up-to-date. See our dedicated repository for the erxes documentation, or view our <a href="https://docs.erxes.io/docs/intro">documentation here</a>.
See the <a href="https://github.com/erxes/erxes/blob/master/LICENSE.md" >LICENSE</a> file for licensing information.