diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..b106be90
Binary files /dev/null and b/.DS_Store differ
diff --git a/exercises/.DS_Store b/exercises/.DS_Store
new file mode 100644
index 00000000..e7d1e857
Binary files /dev/null and b/exercises/.DS_Store differ
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/DialerActivity.java b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/DialerActivity.java
deleted file mode 100644
index 09e62463..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/DialerActivity.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.example.accesscode.myphone;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.Button;
-import android.widget.EditText;
-
-/**
- * Created by amyquispe on 4/30/15.
- */
-public class DialerActivity extends Activity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_dialer);
- Button callButton = (Button) findViewById(R.id.call_button);
- final EditText dialerText = (EditText) findViewById(R.id.dialer_text);
- callButton.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- /* get text input */
- String phoneNumber = dialerText.getText().toString();
-
- /*
- Use an implicit intent to open the user's phone app to call this number.
- http://developer.android.com/guide/components/intents-common.html#Phone
- */
- }
- });
- }
-}
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/EmailActivity.java b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/EmailActivity.java
deleted file mode 100644
index 24934ce9..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/EmailActivity.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.example.accesscode.myphone;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.Button;
-import android.widget.EditText;
-
-/**
- * Created by amyquispe on 4/30/15.
- */
-public class EmailActivity extends Activity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_email);
- final EditText emailSubject = (EditText) findViewById(R.id.email_subject);
- final EditText emailBody = (EditText) findViewById(R.id.email_body);
- Button mailButton = (Button) findViewById(R.id.mail_button);
- mailButton.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- String myEmailAddress = ""; /* put your email address here */
- String subject = emailSubject.getText().toString();
- String body = emailBody.getText().toString();
-
- /*
- Use an implicit intent to open up the user's email program and send
- and email with this subject and body to you.
-
- http://developer.android.com/guide/components/intents-common.html#Email
-
- */
- }
- });
- }
-}
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/MainActivity.java b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/MainActivity.java
deleted file mode 100644
index 2e0460c9..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/java/com/example/accesscode/myphone/MainActivity.java
+++ /dev/null
@@ -1,66 +0,0 @@
-package com.example.accesscode.myphone;
-
-import android.support.v7.app.ActionBarActivity;
-import android.os.Bundle;
-import android.view.Menu;
-import android.view.MenuItem;
-import android.view.View;
-import android.widget.Button;
-import android.widget.Toast;
-
-
-public class MainActivity extends ActionBarActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- /* DialerActivity */
- Button dialerButton = (Button) findViewById(R.id.dialer_button);
- dialerButton.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- Toast.makeText(getApplicationContext(), "Dialer clicked", Toast.LENGTH_SHORT).show();
- /*
- Use Explicit Intent to start DialerActivity here.
- */
- }
- });
- /* EmailActivity */
- Button emailButton = (Button) findViewById(R.id.email_button);
- emailButton.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- Toast.makeText(getApplicationContext(), "Email clicked", Toast.LENGTH_SHORT).show();
- /*
- Use Explicit Intent to start EmailActivity here.
- */
-
- }
- });
- }
-
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- // Inflate the menu; this adds items to the action bar if it is present.
- getMenuInflater().inflate(R.menu.menu_main, menu);
- return true;
- }
-
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- // Handle action bar item clicks here. The action bar will
- // automatically handle clicks on the Home/Up button, so long
- // as you specify a parent activity in AndroidManifest.xml.
- int id = item.getItemId();
-
- //noinspection SimplifiableIfStatement
- if (id == R.id.action_settings) {
- return true;
- }
-
- return super.onOptionsItemSelected(item);
- }
-}
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_dialer.xml b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_dialer.xml
deleted file mode 100644
index d4bc14d3..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_dialer.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_email.xml b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_email.xml
deleted file mode 100644
index da926c48..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_email.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_main.xml b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 5a281d5a..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/dimens.xml b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 47c82246..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 16dp
- 16dp
-
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/strings.xml b/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/strings.xml
deleted file mode 100644
index 0ddeb50a..00000000
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
- MyPhone
-
- Hello world!
- Settings
-
diff --git a/exercises/5_OOP-and-Intents/oop/src/Instrument.java b/exercises/5_OOP-and-Intents/oop/src/Instrument.java
deleted file mode 100644
index e3f342e9..00000000
--- a/exercises/5_OOP-and-Intents/oop/src/Instrument.java
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * Created by amyquispe on 4/30/15.
- */
-public interface Instrument {
- /* expected behavior: when play() is called, return a String that represents the Instrument's noise */
- public String play();
-}
diff --git a/exercises/5_OOP-and-Intents/oop/src/Musician.java b/exercises/5_OOP-and-Intents/oop/src/Musician.java
deleted file mode 100644
index fe90f5ff..00000000
--- a/exercises/5_OOP-and-Intents/oop/src/Musician.java
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * Created by amyquispe on 4/30/15.
- */
-public abstract class Musician {
- /* expected behavior: when play_instrument() is called, return a String that represents the instrument's noise */
- public abstract String play_instrument();
-}
diff --git a/homework/.DS_Store b/homework/.DS_Store
new file mode 100644
index 00000000..270915a9
Binary files /dev/null and b/homework/.DS_Store differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.gitignore b/homework/RosmaryFC/HoroscopesHW20150508/.gitignore
new file mode 100644
index 00000000..afbdab33
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.gitignore
@@ -0,0 +1,6 @@
+.gradle
+/local.properties
+/.idea/workspace.xml
+/.idea/libraries
+.DS_Store
+/build
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/.name b/homework/RosmaryFC/HoroscopesHW20150508/.idea/.name
new file mode 100644
index 00000000..d8db3db2
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/.name
@@ -0,0 +1 @@
+HoroscopesHW20150508
\ No newline at end of file
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/compiler.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/compiler.xml
new file mode 100644
index 00000000..217af471
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/compiler.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/copyright/profiles_settings.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/copyright/profiles_settings.xml
new file mode 100644
index 00000000..e7bedf33
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/copyright/profiles_settings.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/encodings.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/encodings.xml
new file mode 100644
index 00000000..e206d70d
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/encodings.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/gradle.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/gradle.xml
new file mode 100644
index 00000000..736c7b5c
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/gradle.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/misc.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/misc.xml
new file mode 100644
index 00000000..59436c98
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/misc.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/modules.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/modules.xml
new file mode 100644
index 00000000..60e7983a
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/modules.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/scopes/scope_settings.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/scopes/scope_settings.xml
new file mode 100644
index 00000000..922003b8
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/scopes/scope_settings.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/.idea/vcs.xml b/homework/RosmaryFC/HoroscopesHW20150508/.idea/vcs.xml
new file mode 100644
index 00000000..def6a6a1
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/.idea/vcs.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/HoroscopesHW20150508.iml b/homework/RosmaryFC/HoroscopesHW20150508/HoroscopesHW20150508.iml
new file mode 100644
index 00000000..0bb6048a
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/HoroscopesHW20150508.iml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/.gitignore b/homework/RosmaryFC/HoroscopesHW20150508/app/.gitignore
new file mode 100644
index 00000000..796b96d1
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/app.iml b/homework/RosmaryFC/HoroscopesHW20150508/app/app.iml
new file mode 100644
index 00000000..9ac5da5d
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/app.iml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/build.gradle b/homework/RosmaryFC/HoroscopesHW20150508/app/build.gradle
similarity index 66%
rename from exercises/5_OOP-and-Intents/MyPhone/app/build.gradle
rename to homework/RosmaryFC/HoroscopesHW20150508/app/build.gradle
index f2d962df..e775eb00 100644
--- a/exercises/5_OOP-and-Intents/MyPhone/app/build.gradle
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/build.gradle
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 21
- buildToolsVersion "21.1.2"
+ compileSdkVersion 22
+ buildToolsVersion "22.0.1"
defaultConfig {
- applicationId "com.example.accesscode.myphone"
+ applicationId "nyc.c4q.rosmaryfc.horoscopeshw20150508"
minSdkVersion 15
- targetSdkVersion 21
+ targetSdkVersion 22
versionCode 1
versionName "1.0"
}
@@ -21,5 +21,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:22.0.0'
+ compile 'com.android.support:appcompat-v7:22.1.1'
}
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/proguard-rules.pro b/homework/RosmaryFC/HoroscopesHW20150508/app/proguard-rules.pro
similarity index 88%
rename from exercises/5_OOP-and-Intents/MyPhone/app/proguard-rules.pro
rename to homework/RosmaryFC/HoroscopesHW20150508/app/proguard-rules.pro
index 1109d47e..ad9904fd 100644
--- a/exercises/5_OOP-and-Intents/MyPhone/app/proguard-rules.pro
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/proguard-rules.pro
@@ -1,6 +1,6 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
-# in /Users/amyquispe/Library/Android/sdk/tools/proguard/proguard-android.txt
+# in /Users/c4q-rosmary/Library/Android/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/androidTest/java/com/example/accesscode/myphone/ApplicationTest.java b/homework/RosmaryFC/HoroscopesHW20150508/app/src/androidTest/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/ApplicationTest.java
similarity index 86%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/androidTest/java/com/example/accesscode/myphone/ApplicationTest.java
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/androidTest/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/ApplicationTest.java
index 1f9ab7ae..2f7c433f 100644
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/androidTest/java/com/example/accesscode/myphone/ApplicationTest.java
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/androidTest/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/ApplicationTest.java
@@ -1,4 +1,4 @@
-package com.example.accesscode.myphone;
+package nyc.c4q.rosmaryfc.horoscopeshw20150508;
import android.app.Application;
import android.test.ApplicationTestCase;
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/AndroidManifest.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/AndroidManifest.xml
similarity index 85%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/AndroidManifest.xml
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/AndroidManifest.xml
index 832d95e8..4edc74a9 100644
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/AndroidManifest.xml
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/AndroidManifest.xml
@@ -1,6 +1,6 @@
+ package="nyc.c4q.rosmaryfc.horoscopeshw20150508" >
-
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/MainActivity.java b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/MainActivity.java
new file mode 100644
index 00000000..e235605e
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/java/nyc/c4q/rosmaryfc/horoscopeshw20150508/MainActivity.java
@@ -0,0 +1,146 @@
+package nyc.c4q.rosmaryfc.horoscopeshw20150508;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.support.v4.widget.DrawerLayout;
+import android.view.LayoutInflater;
+import android.view.Menu;
+import android.view.MenuItem;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.AdapterView;
+import android.widget.ArrayAdapter;
+import android.widget.ImageView;
+import android.widget.ListView;
+import android.widget.TextView;
+
+import java.util.Locale;
+
+//todo: create a submenu in navigation for sign with all signs underneath
+//todo: possible to create a frag from main screen? so it won't be so blank
+//
+
+public class MainActivity extends Activity {
+ private String[] mSignTitles;
+ private DrawerLayout mDrawerLayout;
+ private ListView mDrawerList;
+
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+
+ mSignTitles = getResources().getStringArray(R.array.signs_array);
+ mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
+ mDrawerList = (ListView) findViewById(R.id.left_drawer);
+
+ // Set the adapter for the list view
+ mDrawerList.setAdapter(new ArrayAdapter(this,
+ R.layout.drawer_list_item, mSignTitles));
+ // Set the list's click listener
+ mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
+
+ }
+
+
+ @Override
+ public boolean onCreateOptionsMenu(Menu menu) {
+ // Inflate the menu; this adds items to the action bar if it is present.
+ getMenuInflater().inflate(R.menu.menu_main, menu);
+ return true;
+ }
+
+ @Override
+ public boolean onOptionsItemSelected(MenuItem item) {
+ // Handle action bar item clicks here. The action bar will
+ // automatically handle clicks on the Home/Up button, so long
+ // as you specify a parent activity in AndroidManifest.xml.
+ int id = item.getItemId();
+
+ //noinspection SimplifiableIfStatement
+ if (id == R.id.action_settings) {
+ return true;
+ }
+
+ return super.onOptionsItemSelected(item);
+ }
+
+ /* The click listener for ListView in the navigation drawer */
+ private class DrawerItemClickListener implements ListView.OnItemClickListener {
+ @Override
+ public void onItemClick(AdapterView> parent, View view, int position, long id) {
+ selectItem(position);
+ }
+ }
+
+ private void selectItem(int position) {
+ // update the menu_main content by replacing fragments
+ android.app.Fragment fragment = new SignFragment();
+ Bundle args = new Bundle();
+ args.putInt(SignFragment.ARG_SIGN_NUMBER, position);
+ fragment.setArguments(args);
+
+ android.app.FragmentManager fragmentManager = getFragmentManager();
+ fragmentManager.beginTransaction().replace(R.id.content_frame, fragment).commit();
+
+ // update selected item and title, then close the drawer
+ mDrawerList.setItemChecked(position, true);
+ setTitle(mSignTitles[position]);
+ mDrawerLayout.closeDrawer(mDrawerList);
+ }
+
+ /**
+ * Fragment that appears in the "content_frame", shows a planet
+ */
+ public static class SignFragment extends android.app.Fragment {
+ public static final String ARG_SIGN_NUMBER = "sign_number";
+
+ public SignFragment() {
+ // Empty constructor required for fragment subclasses
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+ View rootView = inflater.inflate(R.layout.fragment_signs, container, false);
+ int i = getArguments().getInt(ARG_SIGN_NUMBER);
+ String sign = getResources().getStringArray(R.array.signs_array)[i];
+
+ int imageId = getResources().getIdentifier(sign.toLowerCase(Locale.getDefault()),
+ "drawable", getActivity().getPackageName());
+ ((ImageView) rootView.findViewById(R.id.image)).setImageResource(imageId);
+
+ //todo: would like to create a method to set string in relation to sign
+ if(sign.equals("Capricorn")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.capricorn);
+ } else if(sign.equals("Aquarius")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.aquarius);
+ }else if(sign.equals("Pisces")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.pisces);
+ }else if(sign.equals("Aries")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.aries);
+ }else if(sign.equals("Taurus")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.taurus);
+ }else if(sign.equals("Gemini")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.gemini);
+ }else if(sign.equals("Cancer")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.cancer);
+ }else if(sign.equals("Leo")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.leo);
+ }else if(sign.equals("Virgo")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.virgo);
+ }else if(sign.equals("Libra")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.libra);
+ }else if(sign.equals("Scorpio")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.scorpio);
+ }else if(sign.equals("Sagittarius")){
+ ((TextView) rootView.findViewById(R.id.sign_info)).setText(R.string.sagittarius);
+ }
+ getActivity().setTitle(sign);
+ return rootView;
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/drawer_shadow.9.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/drawer_shadow.9.png
new file mode 100644
index 00000000..236bff55
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/drawer_shadow.9.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/ic_drawer.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/ic_drawer.png
new file mode 100644
index 00000000..c59f601c
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-hdpi/ic_drawer.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/drawer_shadow.9.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/drawer_shadow.9.png
new file mode 100644
index 00000000..ffe3a28d
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/drawer_shadow.9.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/ic_drawer.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/ic_drawer.png
new file mode 100644
index 00000000..1ed2c56e
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-mdpi/ic_drawer.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png
new file mode 100644
index 00000000..fabe9d96
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/ic_drawer.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/ic_drawer.png
new file mode 100644
index 00000000..a5fa74de
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xhdpi/ic_drawer.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
new file mode 100644
index 00000000..b91e9d7f
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/ic_drawer.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/ic_drawer.png
new file mode 100644
index 00000000..9c4685d6
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable-xxhdpi/ic_drawer.png differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aquarius.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aquarius.jpeg
new file mode 100644
index 00000000..5f2ed89e
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aquarius.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aries.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aries.jpeg
new file mode 100644
index 00000000..8cb399d2
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/aries.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/cancer.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/cancer.jpeg
new file mode 100644
index 00000000..44aca4af
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/cancer.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/capricorn.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/capricorn.jpeg
new file mode 100644
index 00000000..e9aeb068
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/capricorn.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/gemini.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/gemini.jpeg
new file mode 100644
index 00000000..9fca7e3f
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/gemini.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/leo.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/leo.jpeg
new file mode 100644
index 00000000..680459d5
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/leo.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/libra.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/libra.jpeg
new file mode 100644
index 00000000..628cd6e2
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/libra.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/pisces.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/pisces.jpeg
new file mode 100644
index 00000000..8b8c964c
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/pisces.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/sagittarius.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/sagittarius.jpeg
new file mode 100644
index 00000000..47f2ff72
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/sagittarius.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/scorpio.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/scorpio.jpeg
new file mode 100644
index 00000000..088370a7
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/scorpio.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/taurus.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/taurus.jpeg
new file mode 100644
index 00000000..415a356f
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/taurus.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/virgo.jpeg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/virgo.jpeg
new file mode 100644
index 00000000..57e04706
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/virgo.jpeg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/zodiacsignsall.jpg b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/zodiacsignsall.jpg
new file mode 100644
index 00000000..ab1e49db
Binary files /dev/null and b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/drawable/zodiacsignsall.jpg differ
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/activity_main.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 00000000..2379ea6b
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/drawer_list_item.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/drawer_list_item.xml
new file mode 100644
index 00000000..cc39cf73
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/drawer_list_item.xml
@@ -0,0 +1,11 @@
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/fragment_signs.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/fragment_signs.xml
new file mode 100644
index 00000000..6270a28e
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/layout/fragment_signs.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/global.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/global.xml
new file mode 100644
index 00000000..326a6a7e
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/global.xml
@@ -0,0 +1,5 @@
+
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/menu/menu_main.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/menu_main.xml
similarity index 99%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/menu/menu_main.xml
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/menu_main.xml
index b1cb9081..808187b8 100644
--- a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/menu/menu_main.xml
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/menu/menu_main.xml
@@ -4,3 +4,4 @@
+
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-hdpi/ic_launcher.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-hdpi/ic_launcher.png
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-hdpi/ic_launcher.png
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-mdpi/ic_launcher.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-mdpi/ic_launcher.png
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-mdpi/ic_launcher.png
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-xhdpi/ic_launcher.png
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-xhdpi/ic_launcher.png
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values-w820dp/dimens.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values-w820dp/dimens.xml
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values-w820dp/dimens.xml
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values-w820dp/dimens.xml
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/dimens.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/dimens.xml
new file mode 100644
index 00000000..074e7a03
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/dimens.xml
@@ -0,0 +1,9 @@
+
+
+ 16dp
+ 16dp
+
+
+ 240dp
+
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/strings.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/strings.xml
new file mode 100644
index 00000000..da701c44
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/strings.xml
@@ -0,0 +1,145 @@
+
+ HoroscopesHW20150508
+
+
+ - Capricorn
+ - Aquarius
+ - Pisces
+ - Aries
+ - Taurus
+ - Gemini
+ - Cancer
+ - Leo
+ - Virgo
+ - Libra
+ - Scorpio
+ - Sagittarius
+
+
+
+ Your element: Earth \n \n
+ Your ruling planets: Saturn \n \n
+ Symbol: The Goat \n \n
+ Your stone: Garnet \n \n
+ Life Pursuit: To be proud of their achievements \n \n
+ Vibration: Powerful resilient energy \n \n
+ Capricorn Secret Desire: to be admired by their family and friends and the world at large \n \n
+
+
+
+ Your element: Air \n \n
+ Your ruling planets: Uranus \n \n
+ Symbol: The Water Bearer \n \n
+ Your stone: Amethyst \n \n
+ Life Pursuit: To understand life\'s mysteries \n \n
+ Vibration: High frequency \n \n
+ Aquarius Secret Desire: To be unique and original \n \n
+
+
+
+ Your element: Water \n \n
+ Your ruling planets: Neptune \n \n
+ Symbol: The Fish \n \n
+ Your stone: Bloodstone \n \n
+ Life Pursuit: To avoid feeling alone and instead feel connected to others and the world at large \n \n
+ Vibration: Erratic Energy levels \n \n
+ Pisces Secret Desire: To live their dreams and turn fantasies into realities. \n \n
+
+
+
+ Your element: Fire \n \n
+ Your ruling planets: Mars \n \n
+ Symbol: The Ram \n \n
+ Your stone: Diamond \n \n
+ Life Pursuit: The thrill of the moment \n \n
+ Vibration: Enthusiastic \n \n
+ Aries Secret Desire: To lead the way for others. \n \n
+
+
+
+ Your element: Earth \n \n
+ Your ruling planets: Venus \n \n
+ Symbol: The Bull \n \n
+ Your stone: Emerald \n \n
+ Life Pursuit: Emotional and financial security \n \n
+ Vibration: Determined energy \n \n
+ Taurus Secret Desire: To have a secure, happy and wealthy life/marriage. \n \n
+
+
+
+ Your element: Air \n \n
+ Your ruling planets: Mercury \n \n
+ Symbol: The Twins \n \n
+ Your stone: Aquamarine \n \n
+ Life Pursuit: To explore a little bit of everything. \n \n
+ Vibration: Intense mental energy \n \n
+ Gemini Secret Desire: To be ahead of the crowd \n \n
+
+
+
+ Your element: Water \n \n
+ Your ruling planets: The Moon \n \n
+ Symbol: The Crab \n \n
+ Your stone: Moonstone \n \n
+ Life Pursuit: Constant reassurance and intimacy \n \n
+ Vibration: Moody \n \n
+ Cancer Secret Desire: To feel safe (emotionally, spiritually, romantically and financially) \n \n
+
+
+
+ Your element: Fire \n \n
+ Your ruling planets: The Sun \n \n
+ Symbol: The Lion \n \n
+ Your stone: Peridot \n \n
+ Life Pursuit: To lead the way \n \n
+ Vibration: Radiant Energy \n \n
+ Leo Secret Desire: To be a star \n \n
+
+
+
+ Your element: Earth \n \n
+ Your ruling planets: Mercury \n \n
+ Symbol: The Virgin \n \n
+ Your stone: Sapphire \n \n
+ Life Pursuit: To do the right thing \n \n
+ Vibration: Compassionate and caring \n \n
+ Virgo Secret Desire: To love and be loved in return \n \n
+
+
+
+ Your element: Air \n \n
+ Your ruling planets: Venus \n \n
+ Symbol: The Scales \n \n
+ Your stone: Opals \n \n
+ Life Pursuit: To be consistent \n \n
+ Vibration: Unsteady \n \n
+ Libra Secret Desire: To live an easy, uncomplicated life. \n \n
+
+
+
+ Your element: Water \n \n
+ Your ruling planets: Pluto \n \n
+ Symbol: The Scorpion \n \n
+ Your stone: Topaz \n \n
+ Life Pursuit: To survive against all opposition \n \n
+ Vibration: Resilient \n \n
+ Scorpio Secret Desire: To triumph \n \n
+
+
+
+ Your element: Fire \n \n
+ Your ruling planets: Jupiter \n \n
+ Symbol: The Archer \n \n
+ Your stone: Turquoise \n \n
+ Life Pursuit: To live the good life \n \n
+ Vibration: Overly expressive - frequent burnouts \n \n
+ Sagittarius Secret Desire: To make a difference in the world \n \n
+
+
+ Open navigation drawer
+ Close navigation drawer
+
+ Example action
+
+ Settings
+
diff --git a/exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/styles.xml b/homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/styles.xml
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/app/src/main/res/values/styles.xml
rename to homework/RosmaryFC/HoroscopesHW20150508/app/src/main/res/values/styles.xml
diff --git a/exercises/5_OOP-and-Intents/MyPhone/build.gradle b/homework/RosmaryFC/HoroscopesHW20150508/build.gradle
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/build.gradle
rename to homework/RosmaryFC/HoroscopesHW20150508/build.gradle
diff --git a/homework/RosmaryFC/HoroscopesHW20150508/gradle.properties b/homework/RosmaryFC/HoroscopesHW20150508/gradle.properties
new file mode 100644
index 00000000..1d3591c8
--- /dev/null
+++ b/homework/RosmaryFC/HoroscopesHW20150508/gradle.properties
@@ -0,0 +1,18 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+# Default value: -Xmx10248m -XX:MaxPermSize=256m
+# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
\ No newline at end of file
diff --git a/exercises/5_OOP-and-Intents/MyPhone/gradle/wrapper/gradle-wrapper.jar b/homework/RosmaryFC/HoroscopesHW20150508/gradle/wrapper/gradle-wrapper.jar
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/gradle/wrapper/gradle-wrapper.jar
rename to homework/RosmaryFC/HoroscopesHW20150508/gradle/wrapper/gradle-wrapper.jar
diff --git a/exercises/5_OOP-and-Intents/MyPhone/gradle/wrapper/gradle-wrapper.properties b/homework/RosmaryFC/HoroscopesHW20150508/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/gradle/wrapper/gradle-wrapper.properties
rename to homework/RosmaryFC/HoroscopesHW20150508/gradle/wrapper/gradle-wrapper.properties
diff --git a/exercises/5_OOP-and-Intents/MyPhone/gradlew b/homework/RosmaryFC/HoroscopesHW20150508/gradlew
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/gradlew
rename to homework/RosmaryFC/HoroscopesHW20150508/gradlew
diff --git a/exercises/5_OOP-and-Intents/MyPhone/gradlew.bat b/homework/RosmaryFC/HoroscopesHW20150508/gradlew.bat
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/gradlew.bat
rename to homework/RosmaryFC/HoroscopesHW20150508/gradlew.bat
diff --git a/exercises/5_OOP-and-Intents/MyPhone/settings.gradle b/homework/RosmaryFC/HoroscopesHW20150508/settings.gradle
similarity index 100%
rename from exercises/5_OOP-and-Intents/MyPhone/settings.gradle
rename to homework/RosmaryFC/HoroscopesHW20150508/settings.gradle