All Projects → jitpack → Android Example

jitpack / Android Example

Example Android library that builds on jitpack.io

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Android Example

Maildroid
Maildroid is a small robust android library for sending emails using SMTP server
Stars: ✭ 150 (+16.28%)
Mutual labels:  gradle, jitpack
StuyLib
Award-Winning FRC Library by StuyPulse Team 694
Stars: ✭ 17 (-86.82%)
Mutual labels:  gradle, jitpack
Codeeditor
Code Editor Native Way
Stars: ✭ 155 (+20.16%)
Mutual labels:  gradle, jitpack
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (-21.71%)
Mutual labels:  gradle, jitpack
Jitpack.io
Documentation and issues of https://jitpack.io
Stars: ✭ 2,156 (+1571.32%)
Mutual labels:  gradle, jitpack
Cosin
Android loading view library 📊🍭
Stars: ✭ 129 (+0%)
Mutual labels:  gradle, jitpack
Anychart Android
AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
Stars: ✭ 1,762 (+1265.89%)
Mutual labels:  gradle
Iocipher
make non-root mountable encrypted disk shares
Stars: ✭ 124 (-3.88%)
Mutual labels:  gradle
Android Readthefuckingsourcecode
😜 记录日常的开发技巧,开发中遇到的技术重点、难点,各个知识点的总结,优质面试题等等。持续更新...
Stars: ✭ 1,665 (+1190.7%)
Mutual labels:  gradle
Android Issue Reporter
A powerful and simple library to open issues on GitHub directly from your app.
Stars: ✭ 115 (-10.85%)
Mutual labels:  jitpack
Monorepo
Showcase of how to manage building projects inside monorepo with Gradle as build tool and CircleCI, Bitbucket Pipelines, Travis CI or GitHub Actions as CI tool.
Stars: ✭ 129 (+0%)
Mutual labels:  gradle
Gradle Eclipse Aar Plugin
Gradle plugin to use Android AAR libraries on Eclipse.
Stars: ✭ 127 (-1.55%)
Mutual labels:  gradle
Gradle Maven Plugin
Gradle 5.x Maven Publish Plugin to deploy artifacts
Stars: ✭ 124 (-3.88%)
Mutual labels:  gradle
Gnag
A Gradle plugin that helps facilitate GitHub PR checking and automatic commenting of violations.
Stars: ✭ 120 (-6.98%)
Mutual labels:  gradle
Jib
🏗 Build container images for your Java applications.
Stars: ✭ 11,370 (+8713.95%)
Mutual labels:  gradle
Clojurephant
Clojure and Clojurescript support for Gradle
Stars: ✭ 118 (-8.53%)
Mutual labels:  gradle
Forma
Meta build system with Android and Gradle support.
Stars: ✭ 127 (-1.55%)
Mutual labels:  gradle
Okbuck
OkBuck is a gradle plugin that lets developers utilize the Buck build system on a gradle project.
Stars: ✭ 1,513 (+1072.87%)
Mutual labels:  gradle
Gradle Command Action
Execute Gradle Command Github Action
Stars: ✭ 123 (-4.65%)
Mutual labels:  gradle
Bytex
ByteX is a bytecode plugin platform based on Android Gradle Transform API and ASM. 字节码插件开发平台
Stars: ✭ 2,140 (+1558.91%)
Mutual labels:  gradle

android-example

Release

Example Android library project that works with jitpack.io.

See this Tutorial on how to publish an Android Library with JitPack.

For more details check out the documentation

https://jitpack.io/#jitpack/android-example

Add it to your build.gradle with:

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

and:

dependencies {
    compile 'com.github.jitpack:android-example:{latest version}'
}

Multiple build variants

If your library uses multiple flavours then see this example: https://github.com/jitpack-io/android-jitpack-library-example

Adding the maven plugin

To enable installing into local maven repository and JitPack you need to add the android-maven plugin:

  1. Add classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' to root build.gradle under buildscript { dependencies {
  2. Add com.github.dcendents.android-maven to the library/build.gradle

After these changes you should be able to run:

./gradlew install

from the root of your project. If install works and you have added a GitHub release it should work on jitpack.io

Adding a sample app

If you add a sample app to the same repo then your app needs to have a dependency on the library. To do this in your app/build.gradle add:

    dependencies {
        compile project(':library')
    }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].