From c13444fc11bcae9b6508d22d293579411cc67366 Mon Sep 17 00:00:00 2001 From: giogiannola Date: Wed, 14 Mar 2018 17:43:26 -0400 Subject: [PATCH 1/2] Add gold color --- .idea/.name | 1 - .idea/codeStyles/codeStyleConfig.xml | 5 ++ .idea/misc.xml | 12 +--- .idea/runConfigurations.xml | 12 ---- FunFacts.iml | 2 +- app/app.iml | 55 +++++++++---------- app/build.gradle | 2 +- .../teamtreehouse/funfacts/ColorWheel.java | 3 +- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 4 +- 10 files changed, 40 insertions(+), 58 deletions(-) delete mode 100644 .idea/.name create mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/runConfigurations.xml diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index 3f76547..0000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -Fun Facts \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index c9710e6..7e4afd9 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,17 +3,7 @@ - - - - - - - - - - - + diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/FunFacts.iml b/FunFacts.iml index 5def1bf..37cff80 100644 --- a/FunFacts.iml +++ b/FunFacts.iml @@ -1,5 +1,5 @@ - + diff --git a/app/app.iml b/app/app.iml index 1593039..9d9a07e 100644 --- a/app/app.iml +++ b/app/app.iml @@ -1,5 +1,5 @@ - + @@ -9,13 +9,9 @@ - + - + + + @@ -48,40 +46,41 @@ - + + + + + + + + - + - - - + + + + + + + + + - - - - - - - - - - + - - - @@ -90,8 +89,8 @@ - - - + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 2007557..617f872 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 23 - buildToolsVersion "23.0.0" + buildToolsVersion '25.0.0' defaultConfig { applicationId "com.teamtreehouse.funfacts" diff --git a/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java b/app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java index 8a62442..58e7d26 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 + "#ddca8b" // gold }; // Method (abilities: things the object can do) diff --git a/build.gradle b/build.gradle index 1b7886d..c6f2f50 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.3.0' + classpath 'com.android.tools.build:gradle:2.3.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e7faee0..eb10e96 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Wed Apr 10 15:27:10 PDT 2013 +#Wed Mar 14 17:35:48 EDT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip From 5c26b719b249155afe9fd8e5caa127c653591862 Mon Sep 17 00:00:00 2001 From: giogiannola Date: Wed, 14 Mar 2018 17:45:21 -0400 Subject: [PATCH 2/2] Add bronze color --- .idea/codeStyles/codeStyleConfig.xml | 5 +++++ app/app.iml | 1 - app/src/main/java/com/teamtreehouse/funfacts/ColorWheel.java | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .idea/codeStyles/codeStyleConfig.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/app/app.iml b/app/app.iml index 1593039..e5908db 100644 --- a/app/app.iml +++ b/app/app.iml @@ -9,7 +9,6 @@