Skip to content

Simplify is an Android Library that consists of different methods that can be used to make development smoother and the developer has to write less code in order to get the output

Notifications You must be signed in to change notification settings

arnoldvaz27/Simplify

Repository files navigation

Simplify

OpenSource

Stable Release License

Copyright MIN SDK

Thank you

About About

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

How to use Simplify in my Android Project Doc Release

For Gradle

  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' }
    }
}
  1. Add the dependency in your app build.gradle:

Add the following dependency

	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'

For Maven

  1. Add JitPack:
 <repositories>
 	<repository>
 	    <id>jitpack.io</id>
 	    <url>
 	    	https://jitpack.io
 	    </url>
 	</repository>
 </repositories>
  1. Add the dependency:

Add the following dependency

  <dependency>
      <groupId>com.github.arnoldvaz27</groupId>
      <artifactId>Simplify</artifactId>
      <version>1.5</version>
  </dependency>

For Sbt

  1. Add it in your build.sbt at the end of resolvers:
  resolvers += "jitpack" at "https://jitpack.io"
  1. Add the dependency:

Add the following dependency

  libraryDependencies += "com.github.arnoldvaz27" % "Simplify" % "1.5"

For Leiningen

  1. Add it in your project.clj at the end of repositories:
  :repositories [["jitpack" "https://jitpack.io"]]
  1. Add the dependency:

Add the following dependency

  :dependencies [[com.github.arnoldvaz27/Simplify "1.5"]]

Methods in Simplify

For Method Details of Simplify Click Here

For Development of the Library:

Code reviews Code Review

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.

Verification and Acceptance of Pull Requests Verification and Acceptance

  1. Pull requests will be accepted if the code modified is a valid or necessary
  2. Before acceptance, the code will be tested and then it will merged within the branch
  3. After the code is merged the pull requests will be closed
  4. User can not send multiple pull request/ updation code, else this will result in closing all the pull request without further testing process
  5. You can also give screenshots or suggestion for updating the read me file of this project
  6. The request for screenshots or updation the read me file will also be verified as per the above mentioned points.

Tools needed for development Software to use Software to use Software to use

  1. Read The Documentation for using Android Studio
  2. Read The Documentation for using Java
  3. Read The Documentation for using Github

Support Support

  1. Follow my github account
  2. Visit my LinkTree Profile to get more links for discussion
  3. Visit my Website - Programming Drive

Opening an issue, bug or suggestion Issue

  1. You can also post bug reports and feature requests (only) in this repositoris GitHub issues section

  2. Pull requests can be send from this link

License under MIT License Copyright

Check here for more details This library is shared under MIT License.


Developed By

Made with ❤️ by Arnold Vaz

About

Simplify is an Android Library that consists of different methods that can be used to make development smoother and the developer has to write less code in order to get the output

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages