Tamagotchi

Tamagotchi Remote Library

This is a library for interacting with the Tamagotchi server.


Linked Repositories


Setup

  1. Add the JitPack repository to your build file
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  1. Add the dependency
dependencies {
	implementation 'com.github.paulrozhkin:tamagotchi-remote-library:Tag'
}
  1. Add permissions to android manifest
<!-- Retrofit permission -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />