farhad/pidgets


custom Android widgets and utilities

Download


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.jibmib:pidgets:v3.0.17'
	}
	dependencies {
		implementation("com.github.jibmib:pidgets:v3.0.17")
	}
	<dependency>
	    <groupId>com.github.jibmib</groupId>
	    <artifactId>pidgets</artifactId>
	    <version>v3.0.17</version>
	</dependency>

                            
    libraryDependencies += "com.github.jibmib" % "pidgets" % "v3.0.17"
        
        

                            
    :dependencies [[com.github.jibmib/pidgets "v3.0.17"]]
        
        

Readme


Download

pidgets is a collection of reusable tools for Android day-to-day development, with first class support for the Persian language and Iranian developers requirements.

Download

repositories{
	jcenter()
}

implementation 'io.github.farhad:pidgets:3.0.17'

License

Copyright (C) 2016  Farhad Faghihi

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.