Last active
February 6, 2023 13:44
-
-
Save udacityandroid/03774486d065d2302e33 to your computer and use it in GitHub Desktop.
Revisions
-
udacityandroid revised this gist
Jun 23, 2015 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ boolean isRaining = false; Log.v("WeatherActivity", "Thank you for using the WhetherWeather App."); if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); -
udacityandroid renamed this gist
Jun 22, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
udacityandroid revised this gist
Jun 22, 2015 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ boolean isRaining = false; Log.v("WeatherActivity", "Thank you for using the WhetherWeather App."); -
udacityandroid revised this gist
Jun 22, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ boolean isRaining = false; Log.v("WeatherActivity", "Thank you for using the WhetherWeather App."); if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); } else { -
udacityandroid revised this gist
Jun 16, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ boolean isRaining = false; Log.v("WeatherActivity", "Welcome to the WhetherWeather App."); if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); } else { -
udacityandroid created this gist
Jun 16, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ // WhetherWeather Example - Quiz A boolean isRaining = false; Log.v("WeatherActivity", "Welcome to the WhetherWeather App"); if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); } else { Log.v("WeatherActivity", "It's unlikely to rain."); }