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
- 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' }
}
}
- 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'
- Add JitPack:
<repositories>
<repository>
<id>jitpack.io</id>
<url>
https://jitpack.io
</url>
</repository>
</repositories>
- Add the dependency:
<dependency>
<groupId>com.github.arnoldvaz27</groupId>
<artifactId>Simplify</artifactId>
<version>1.5</version>
</dependency>
- Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
- Add the dependency:
libraryDependencies += "com.github.arnoldvaz27" % "Simplify" % "1.5"
- Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
- 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.
- Pull requests will be accepted if the code modified is a valid or necessary
- Before acceptance, the code will be tested and then it will merged within the branch
- After the code is merged the pull requests will be closed
- User can not send multiple pull request/ updation code, else this will result in closing all the pull request without further testing process
- You can also give screenshots or suggestion for updating the read me file of this project
- The request for screenshots or updation the read me file will also be verified as per the above mentioned points.
- Read The Documentation for using Android Studio
- Read The Documentation for using Java
- Read The Documentation for using Github
- Follow my github account
- Visit my LinkTree Profile to get more links for discussion
- Visit my Website - Programming Drive
-
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