Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 786 Bytes

File metadata and controls

41 lines (36 loc) · 786 Bytes

android-server-utils

Template and boilerplate code for list, detail and edit screens for App

Installation

Gradle:

Step 1: Add it in your root build.gradle at the end of repositories:

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

Step 2: Add the dependency

	dependencies {
	        implementation 'com.github.CrinoidTechnologies:android-server-utils:v0.5.0'
	}

Maven:

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Step 2. Add the dependency

	<dependency>
	    <groupId>com.github.CrinoidTechnologies</groupId>
	    <artifactId>android-server-utils</artifactId>
	    <version>v0.5.0</version>
	</dependency>