From 93d789e7a7c80a14bf7aee6c54581076b2dedda9 Mon Sep 17 00:00:00 2001 From: bernd32 Date: Mon, 9 Mar 2020 18:25:30 +0500 Subject: [PATCH] Remove API-key from source file --- app/src/main/java/com/bernd32/weatherdemo/Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/bernd32/weatherdemo/Constants.java b/app/src/main/java/com/bernd32/weatherdemo/Constants.java index 70145e8..3e2b31c 100644 --- a/app/src/main/java/com/bernd32/weatherdemo/Constants.java +++ b/app/src/main/java/com/bernd32/weatherdemo/Constants.java @@ -5,6 +5,6 @@ package com.bernd32.weatherdemo; */ public class Constants { public static final String BASE_URL = "http://api.openweathermap.org"; - public static final String API_KEY = "8296eaaa0ef012da8f776aa0ec890817"; + public static final String API_KEY = ""; // Get a free API key from here: https://openweathermap.org/appid }