Simplify is an Android Library that consists of different methods that can be used to make development more smoother and the developer has to write less code in order to get the output
For documentations of previous release 1.0 to 1.3, Click Here
Please read the documentation carefully (for releases from 1.4 and above), if you have any queries feel free to connect with me
1) Add JitPack in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
OR just copy the below code and paste in the repositories
maven { url 'https://jitpack.io' }
If you find the following error
Example
A problem occurred evaluating root project ‘WeatherGuide’.
Build was configured to prefer settings repositories over project repositories but repository ‘maven’ was added by build file ‘build.gradle’
This error generally occurs in newer android studio version starting from version 4.0
Please replace the code in the settings.gradle file
From
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() } }
To
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
2) Add the dependency in your app build.gradle:
dependencies {
implementation 'com.github.arnoldvaz27:Simplify:1.5'
}
OR just copy the below code and paste in the build.gradle
implementation 'com.github.arnoldvaz27:Simplify:1.5'
1) Add JitPack:
<repositories>
<repository>
<id>jitpack.io</id>
<url>
https://jitpack.io
</url>
</repository>
</repositories>
2) Add the dependency:
<dependency>
<groupId>com.github.arnoldvaz27</groupId>
<artifactId>Simplify</artifactId>
<version>1.5</version>
</dependency>
1) Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
2) Add the dependency:
libraryDependencies += "com.github.arnoldvaz27" % "Simplify" % "1.5"
1) Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
2) Add the dependency:
:dependencies [[com.github.arnoldvaz27/Simplify "1.5"]]
For Method Details of Simplify Click Here
All submissions, including submissions by project members, require review. We use Github Pull Requests (PRs) for this purpose. We recommend you read this guide if you haven’t created a Pull Request before. Pull request guide
Before making any changes, we recommend opening an issue (if one doesn’t already exist) and discussing your proposed changes. This way, we can give you feedback and validated the proposed changes. If the changes are minor (simple bug fix of documentation fix), then feel free to open a PR without discussion.
You can also post bug reports and feature requests (only) in this repositoris GitHub issues section
Pull requests can be send from this link
Check here for more details This library is shared under MIT License.
Made with ❤️ by Arnold Vaz