Skip to content

A weather android app using Compose at Software RD Intern

Notifications You must be signed in to change notification settings

qaz5823091/Weather

Repository files navigation

weather

Setup

1. Register an account

Go to CWA open data to register an account for API keys.

2. Get the authorization

Visit authorization page to get the authorization key.

3. Clone project

$ git clone https://github.com/qaz5823091/Weather.git

4. New a variable

Create a variable named WEATHER_API_KEY in local.properties.

WEATHER_API_KEY = {YOUR API KEY}

5. Check Mainfest

Check Mainfest.xml file including specific meta-data (map into local.properties field).

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-permission android:name="android.permission.INTERNET" />

    ...
    
    <meta-data
            android:name="WEATHER_API_KEY"
            android:value="${WEATHER_API_KEY}" />
    </application>
</manifest>

About

A weather android app using Compose at Software RD Intern

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages