From 6a1a8d761c693f6de28cafe7f33bd75a8d096094 Mon Sep 17 00:00:00 2001 From: Asdi1990 Date: Thu, 6 Feb 2020 12:05:23 +0500 Subject: [PATCH 1/2] Added Blue Color to the Color wheel class --- app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java b/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java index 8a62442..661dfc1 100644 --- a/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java +++ b/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java @@ -19,7 +19,8 @@ public class ColorWheel { "#e0ab18", // mustard "#637a91", // dark gray "#f092b0", // pink - "#b7c0c7" // light gray + "#b7c0c7", // light gray + "#0000ff" //true blue }; // Method (abilities: things the object can do) From 1d3faf959b5dac32d00afd602d76f198b695dc52 Mon Sep 17 00:00:00 2001 From: Asdi1990 Date: Thu, 6 Feb 2020 12:07:54 +0500 Subject: [PATCH 2/2] Added Bronze Color to the Color wheel class --- .idea/gradle.xml | 1 + .idea/misc.xml | 24 ++++++++ .idea/modules.xml | 2 +- FunFacts.iml | 19 ------ app/app.iml | 61 +++++++++++-------- app/build.gradle | 8 +-- .../teamtreehouse/funfacts/ColorWheel.java | 3 +- 7 files changed, 66 insertions(+), 52 deletions(-) delete mode 100644 FunFacts.iml diff --git a/.idea/gradle.xml b/.idea/gradle.xml index bd4202c..c6183f8 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -13,6 +13,7 @@ + diff --git a/.idea/misc.xml b/.idea/misc.xml index c9710e6..7e40dfc 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,6 +3,30 @@ + + + + diff --git a/.idea/modules.xml b/.idea/modules.xml index 9b2307c..8ff2b6c 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,7 +2,7 @@ - + diff --git a/FunFacts.iml b/FunFacts.iml deleted file mode 100644 index 5def1bf..0000000 --- a/FunFacts.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/app.iml b/app/app.iml index 1593039..9056fdb 100644 --- a/app/app.iml +++ b/app/app.iml @@ -9,13 +9,9 @@ - + @@ -48,50 +44,61 @@ - + + + + + + - + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + - + - - - + + + + + + + + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 2007557..60b962f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,13 +1,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 23 - buildToolsVersion "23.0.0" + compileSdkVersion 25 + buildToolsVersion "25.0.0" defaultConfig { applicationId "com.teamtreehouse.funfacts" minSdkVersion 15 - targetSdkVersion 23 + targetSdkVersion 25 versionCode 1 versionName "1.0" } @@ -21,5 +21,5 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:23.0.0' + compile 'com.android.support:appcompat-v7:25.0.0' } diff --git a/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java b/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java index 8a62442..dd99f43 100644 --- a/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java +++ b/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java @@ -19,7 +19,8 @@ public class ColorWheel { "#e0ab18", // mustard "#637a91", // dark gray "#f092b0", // pink - "#b7c0c7" // light gray + "#b7c0c7", // light gray + "#8b4513" // bronze color }; // Method (abilities: things the object can do)