A very basic library for getting information from weatherapi.com
NOTE: This library is not complete yet. Please do not try to use this library in production until it is complete
🏠 Homepage coming soon
✨ Demo coming soon
Start by creating a libs folder in your app folder, and then add the following to your build.gradle:
dependencies {
implementation files('libs/WeatherAPIcomLib-x.x.x.jar')
}
or the following to your pom.xml:
<dependency>
<groupId>com.adamcraftmaster</groupId>
<artifactId>WeatherAPIcomLib</artifactId>
<version>x.x.x</version>
<systemPath>libs/WeatherAPIcomLib-x.x.x.jar</systemPath>
</dependency>
or use the Jitpack repository using:
Gradle build.gradle:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.AdamCraftmaster:WeatherAPIcomLibrary:x.x.x'
}
Maven pom.xml:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.AdamCraftmaster</groupId>
<artifactId>WeatherAPIcomLibrary</artifactId>
<version>0.1.0</version>
</dependency>
Read the documentation
gradle test
or
mvn test
👤 Adam Nativ
- Twitter: @adamcraftmaster
- Github: @AdamCraftmaster
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2022 Adam Nativ.
This project is Apache-2.0 licensed.
This README was generated with ❤️ by readme-md-generator