Skip to content

admlvntv/WeatherAPIcomLibrary

Repository files navigation

Welcome to WeatherAPIcomLibrary 👋

Version Documentation License: Apache-2.0 Twitter: adamcraftmaster DeepSource

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

Install

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>

Usage

Read the documentation

Run tests

gradle test

or

mvn test

Author

👤 Adam Nativ

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 Adam Nativ.
This project is Apache-2.0 licensed.


This README was generated with ❤️ by readme-md-generator