diff --git a/aplication/.idea/codeStyles/codeStyleConfig.xml b/aplication/.idea/codeStyles/codeStyleConfig.xml
deleted file mode 100644
index 79ee123..0000000
--- a/aplication/.idea/codeStyles/codeStyleConfig.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/aplication/.idea/gradle.xml b/aplication/.idea/gradle.xml
deleted file mode 100644
index 169fd0d..0000000
--- a/aplication/.idea/gradle.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/aplication/.idea/kotlinCodeInsightSettings.xml b/aplication/.idea/kotlinCodeInsightSettings.xml
deleted file mode 100644
index 71e404d..0000000
--- a/aplication/.idea/kotlinCodeInsightSettings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/aplication/.idea/vcs.xml b/aplication/.idea/vcs.xml
deleted file mode 100644
index 6c0b863..0000000
--- a/aplication/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/aplication/app/src/main/java/com/example/foodinder/CardItem.java b/aplication/app/src/main/java/com/example/foodinder/CardItem.java
deleted file mode 100644
index 3b5c2db..0000000
--- a/aplication/app/src/main/java/com/example/foodinder/CardItem.java
+++ /dev/null
@@ -1,4 +0,0 @@
-package com.example.foodinder;
-
-public class CardItem {
-}
diff --git a/aplication/app/src/main/java/com/example/foodinder/CardsAdapter.java b/aplication/app/src/main/java/com/example/foodinder/CardsAdapter.java
deleted file mode 100644
index e4d617c..0000000
--- a/aplication/app/src/main/java/com/example/foodinder/CardsAdapter.java
+++ /dev/null
@@ -1,116 +0,0 @@
-package com.example.foodinder
-
-import android.app.Activity
-import android.content.res.Resources
-import android.graphics.Bitmap
-import android.graphics.BitmapFactory
-import android.view.LayoutInflater
-import android.view.View
-import android.view.ViewGroup
-import android.widget.BaseAdapter
-import android.widget.ImageView
-import android.widget.TextView
-
-class CardsAdapter(private val activity: Activity, private val data: List) :
- BaseAdapter() {
- override fun getCount(): Int {
- return data.size
- }
-
- override fun getItem(position: Int): CardItem {
- return data[position]
- }
-
- override fun getItemId(position: Int): Long {
- return position.toLong()
- }
-
- override fun getView(
- position: Int,
- convertView: View,
- parent: ViewGroup
- ): View {
- var convertView = convertView
- val holder: ViewHolder
- val inflater =
- activity.getSystemService(Activity.LAYOUT_INFLATER_SERVICE) as LayoutInflater
- // If holder not exist then locate all view from UI file.
- if (convertView == null) { // inflate UI from XML file
- convertView = inflater.inflate(R.layout.item_card, parent, false)
- // get all UI view
- holder = ViewHolder(convertView)
- // set tag for holder
- convertView.tag = holder
- } else { // if holder created, get tag from view
- holder = convertView.tag as ViewHolder
- }
- //setting data to views
- holder.name.text = getItem(position).name
- holder.location.text = getItem(position).location
- holder.avatar.setImageBitmap(
- decodeSampledBitmapFromResource(
- activity.resources,
- getItem(position).drawableId,
- AVATAR_WIDTH,
- AVATAR_HEIGHT
- )
- )
- return convertView
- }
-
- private inner class ViewHolder(view: View) {
- val avatar: ImageView
- val name: TextView
- val location: TextView
-
- init {
- avatar = view.findViewById(R.id.avatar) as ImageView
- name = view.findViewById(R.id.name) as TextView
- location = view.findViewById(R.id.location) as TextView
- }
- }
-
- companion object {
- private const val AVATAR_WIDTH = 150
- private const val AVATAR_HEIGHT = 300
- fun decodeSampledBitmapFromResource(
- res: Resources?,
- resId: Int,
- reqWidth: Int,
- reqHeight: Int
- ): Bitmap { // First decode with inJustDecodeBounds=true to check dimensions
- val options = BitmapFactory.Options()
- options.inJustDecodeBounds = true
- BitmapFactory.decodeResource(res, resId, options)
- // Calculate inSampleSize
- options.inSampleSize =
- calculateInSampleSize(options, reqWidth, reqHeight)
- // Decode bitmap with inSampleSize set
- options.inJustDecodeBounds = false
- return BitmapFactory.decodeResource(res, resId, options)
- }
-
- fun calculateInSampleSize(
- options: BitmapFactory.Options,
- reqWidth: Int,
- reqHeight: Int
- ): Int { // Raw height and width of image
- val height = options.outHeight
- val width = options.outWidth
- var inSampleSize = 1
- if (height > reqHeight || width > reqWidth) {
- val halfHeight = height / 2
- val halfWidth = width / 2
- // Calculate the largest inSampleSize value that is a power of 2 and keeps both
-// height and width larger than the requested height and width.
- while (halfHeight / inSampleSize >= reqHeight
- && halfWidth / inSampleSize >= reqWidth
- ) {
- inSampleSize *= 2
- }
- }
- return inSampleSize
- }
- }
-
-}
\ No newline at end of file
diff --git a/aplication/app/src/main/java/com/example/foodinder/swipper.java b/aplication/app/src/main/java/com/example/foodinder/swipper.java
deleted file mode 100644
index 5c399de..0000000
--- a/aplication/app/src/main/java/com/example/foodinder/swipper.java
+++ /dev/null
@@ -1,99 +0,0 @@
-package info.devexchanges.cardsstack;
-
-import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
-import android.view.Menu;
-import android.view.MenuItem;
-import android.view.View;
-import android.widget.Toast;
-
-import java.util.ArrayList;
-
-import link.fls.swipestack.SwipeStack;
-
-public class swipper extends AppCompatActivity {
-
- private SwipeStack cardStack;
- private CardsAdapter cardsAdapter;
- private ArrayList cardItems;
- private View btnCancel;
- private View btnLove;
- private int currentPosition;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- cardStack = (SwipeStack) findViewById(R.id.container);
- btnCancel = findViewById(R.id.cancel);
- btnLove = findViewById(R.id.love);
-
- setCardStackAdapter();
- currentPosition = 0;
-
- //Handling swipe event of Cards stack
- cardStack.setListener(new SwipeStack.SwipeStackListener() {
- @Override
- public void onViewSwipedToLeft(int position) {
- currentPosition = position + 1;
- }
-
- @Override
- public void onViewSwipedToRight(int position) {
- currentPosition = position + 1;
- }
-
- @Override
- public void onStackEmpty() {
-
- }
- });
-
- btnCancel.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- cardStack.swipeTopViewToRight();
- }
- });
-
- btnLove.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- Toast.makeText(swipper.this, "You liked " + cardItems.get(currentPosition).getName(),
- Toast.LENGTH_SHORT).show();
- cardStack.swipeTopViewToLeft();
- }
- });
- }
-
- private void setCardStackAdapter() {
- cardItems = new ArrayList<>();
-
- cardItems.add(new CardItem(R.drawable.a, "Huyen My", "Hanoi"));
- cardItems.add(new CardItem(R.drawable.f, "Do Ha", "Nghe An"));
- cardItems.add(new CardItem(R.drawable.g, "Dong Nhi", "Hue"));
- cardItems.add(new CardItem(R.drawable.e, "Le Quyen", "Sai Gon"));
- cardItems.add(new CardItem(R.drawable.c, "Phuong Linh", "Thanh Hoa"));
- cardItems.add(new CardItem(R.drawable.d, "Phuong Vy", "Hanoi"));
- cardItems.add(new CardItem(R.drawable.b, "Ha Ho", "Da Nang"));
-
- cardsAdapter = new CardsAdapter(this, cardItems);
- cardStack.setAdapter(cardsAdapter);
- }
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.menu_main, menu);
- return true;
- }
-
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- if (item.getItemId() == R.id.reset) {
- cardStack.resetStack();
- currentPosition = 0;
- }
- return super.onOptionsItemSelected(item);
- }
-}
diff --git a/aplication/app/src/main/res/drawable-v24/a.jpg b/aplication/app/src/main/res/drawable-v24/a.jpg
deleted file mode 100644
index 2d9a2b9..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/a.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/b.jpg b/aplication/app/src/main/res/drawable-v24/b.jpg
deleted file mode 100644
index 9f26ffd..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/b.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/c.jpg b/aplication/app/src/main/res/drawable-v24/c.jpg
deleted file mode 100644
index 496f8fc..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/c.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/d.jpg b/aplication/app/src/main/res/drawable-v24/d.jpg
deleted file mode 100644
index fa1ee2b..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/d.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/e.jpg b/aplication/app/src/main/res/drawable-v24/e.jpg
deleted file mode 100644
index 36ee769..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/e.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/f.jpg b/aplication/app/src/main/res/drawable-v24/f.jpg
deleted file mode 100644
index dfb8d67..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/f.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/g.jpg b/aplication/app/src/main/res/drawable-v24/g.jpg
deleted file mode 100644
index dfb8d67..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/g.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/h.jpg b/aplication/app/src/main/res/drawable-v24/h.jpg
deleted file mode 100644
index a805ae0..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/h.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/i.jpg b/aplication/app/src/main/res/drawable-v24/i.jpg
deleted file mode 100644
index b8013cc..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/i.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/j.jpg b/aplication/app/src/main/res/drawable-v24/j.jpg
deleted file mode 100644
index 3145250..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/j.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/k.jpg b/aplication/app/src/main/res/drawable-v24/k.jpg
deleted file mode 100644
index c95369d..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/k.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/l.jpg b/aplication/app/src/main/res/drawable-v24/l.jpg
deleted file mode 100644
index de2fd42..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/l.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/m.jpg b/aplication/app/src/main/res/drawable-v24/m.jpg
deleted file mode 100644
index 88010dc..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/m.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/n.jpg b/aplication/app/src/main/res/drawable-v24/n.jpg
deleted file mode 100644
index 6033e74..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/n.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/o.jpg b/aplication/app/src/main/res/drawable-v24/o.jpg
deleted file mode 100644
index 78cd3b0..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/o.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/p.jpg b/aplication/app/src/main/res/drawable-v24/p.jpg
deleted file mode 100644
index de20486..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/p.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/drawable-v24/r.jpg b/aplication/app/src/main/res/drawable-v24/r.jpg
deleted file mode 100644
index 682a58c..0000000
Binary files a/aplication/app/src/main/res/drawable-v24/r.jpg and /dev/null differ
diff --git a/aplication/app/src/main/res/layout/activity_swipper.xml b/aplication/app/src/main/res/layout/activity_swipper.xml
deleted file mode 100644
index 7e53d22..0000000
--- a/aplication/app/src/main/res/layout/activity_swipper.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/aplication/app/src/main/res/layout/item_card.xml b/aplication/app/src/main/res/layout/item_card.xml
deleted file mode 100644
index 3509b84..0000000
--- a/aplication/app/src/main/res/layout/item_card.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/aplication/app/src/main/res/menu/menu_main.xml b/aplication/app/src/main/res/menu/menu_main.xml
deleted file mode 100644
index fe187c0..0000000
--- a/aplication/app/src/main/res/menu/menu_main.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/aplication/app/src/main/res/values/dimens.xml b/aplication/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 47c8224..0000000
--- a/aplication/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 16dp
- 16dp
-
diff --git a/foodinder_app/.gitignore b/foodinder_app/.gitignore
deleted file mode 100644
index 603b140..0000000
--- a/foodinder_app/.gitignore
+++ /dev/null
@@ -1,14 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea/caches
-/.idea/libraries
-/.idea/modules.xml
-/.idea/workspace.xml
-/.idea/navEditor.xml
-/.idea/assetWizardSettings.xml
-.DS_Store
-/build
-/captures
-.externalNativeBuild
-.cxx
diff --git a/foodinder_app/.idea/codeStyles/Project.xml b/foodinder_app/.idea/codeStyles/Project.xml
deleted file mode 100644
index 681f41a..0000000
--- a/foodinder_app/.idea/codeStyles/Project.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- xmlns:android
-
- ^$
-
-
-
-
-
-
-
-
- xmlns:.*
-
- ^$
-
-
- BY_NAME
-
-
-
-
-
-
- .*:id
-
- http://schemas.android.com/apk/res/android
-
-
-
-
-
-
-
-
- .*:name
-
- http://schemas.android.com/apk/res/android
-
-
-
-
-
-
-
-
- name
-
- ^$
-
-
-
-
-
-
-
-
- style
-
- ^$
-
-
-
-
-
-
-
-
- .*
-
- ^$
-
-
- BY_NAME
-
-
-
-
-
-
- .*
-
- http://schemas.android.com/apk/res/android
-
-
- ANDROID_ATTRIBUTE_ORDER
-
-
-
-
-
-
- .*
-
- .*
-
-
- BY_NAME
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/.idea/gradle.xml b/foodinder_app/.idea/gradle.xml
deleted file mode 100644
index 169fd0d..0000000
--- a/foodinder_app/.idea/gradle.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/.idea/misc.xml b/foodinder_app/.idea/misc.xml
deleted file mode 100644
index 37a7509..0000000
--- a/foodinder_app/.idea/misc.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/.idea/runConfigurations.xml b/foodinder_app/.idea/runConfigurations.xml
deleted file mode 100644
index 7f68460..0000000
--- a/foodinder_app/.idea/runConfigurations.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/.idea/vcs.xml b/foodinder_app/.idea/vcs.xml
deleted file mode 100644
index 6c0b863..0000000
--- a/foodinder_app/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/app/.gitignore b/foodinder_app/app/.gitignore
deleted file mode 100644
index 796b96d..0000000
--- a/foodinder_app/app/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/build
diff --git a/foodinder_app/app/build.gradle b/foodinder_app/app/build.gradle
deleted file mode 100644
index 16f10d6..0000000
--- a/foodinder_app/app/build.gradle
+++ /dev/null
@@ -1,41 +0,0 @@
-apply plugin: 'com.android.application'
-apply plugin: 'kotlin-android-extensions'
-apply plugin: 'kotlin-android'
-
-android {
- compileSdkVersion 28
- buildToolsVersion "28.0.3"
- defaultConfig {
- applicationId "com.example.foodinder_app"
- minSdkVersion 16
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'link.fls:swipestack:0.3.0'
- implementation 'com.android.support:appcompat-v7:25.0.0'
- implementation 'com.android.support:cardview-v7:25.0.0'
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
-}
-allprojects {
- repositories {
- jcenter()
- maven {
- url "https://maven.google.com"
- }
- }
-}
-repositories {
- mavenCentral()
-}
diff --git a/foodinder_app/app/libs/android-card-stack-0.1.5.aar b/foodinder_app/app/libs/android-card-stack-0.1.5.aar
deleted file mode 100644
index 8fdee4f..0000000
Binary files a/foodinder_app/app/libs/android-card-stack-0.1.5.aar and /dev/null differ
diff --git a/foodinder_app/app/proguard-rules.pro b/foodinder_app/app/proguard-rules.pro
deleted file mode 100644
index f1b4245..0000000
--- a/foodinder_app/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# Add project specific ProGuard rules here.
-# You can control the set of applied configuration files using the
-# proguardFiles setting in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
-
-# Uncomment this to preserve the line number information for
-# debugging stack traces.
-#-keepattributes SourceFile,LineNumberTable
-
-# If you keep the line number information, uncomment this to
-# hide the original source file name.
-#-renamesourcefileattribute SourceFile
diff --git a/foodinder_app/app/src/main/AndroidManifest.xml b/foodinder_app/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 1b2e72e..0000000
--- a/foodinder_app/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/app/src/main/java/com/example/foodinder_app/CardItem.java b/foodinder_app/app/src/main/java/com/example/foodinder_app/CardItem.java
deleted file mode 100644
index d77a156..0000000
--- a/foodinder_app/app/src/main/java/com/example/foodinder_app/CardItem.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.example.foodinder_app;
-
-public class CardItem {
-
- private int drawableId;
- private String name;
- private String location;
-
- public CardItem(int drawableId, String name, String location) {
- this.drawableId = drawableId;
- this.name = name;
- this.location = location;
- }
-
- public int getDrawableId() {
- return drawableId;
- }
-
- public void setDrawableId(int drawableId) {
- this.drawableId = drawableId;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getLocation() {
- return location;
- }
-}
diff --git a/foodinder_app/app/src/main/java/com/example/foodinder_app/CardsAdapter.java b/foodinder_app/app/src/main/java/com/example/foodinder_app/CardsAdapter.java
deleted file mode 100644
index 59a1ec2..0000000
--- a/foodinder_app/app/src/main/java/com/example/foodinder_app/CardsAdapter.java
+++ /dev/null
@@ -1,117 +0,0 @@
-package com.example.foodinder_app;
-
-import android.app.Activity;
-import android.content.res.Resources;
-import android.graphics.Bitmap;
-import android.graphics.BitmapFactory;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.BaseAdapter;
-import android.widget.ImageView;
-import android.widget.TextView;
-
-import java.util.List;
-
-public class CardsAdapter extends BaseAdapter {
-
- private Activity activity;
- private final static int AVATAR_WIDTH = 150;
- private final static int AVATAR_HEIGHT = 300;
- private List data;
-
- public CardsAdapter(Activity activity, List data) {
- this.data = data;
- this.activity = activity;
- }
-
- @Override
- public int getCount() {
- return data.size();
- }
-
- @Override
- public CardItem getItem(int position) {
- return data.get(position);
- }
-
- @Override
- public long getItemId(int position) {
- return position;
- }
-
- @Override
- public View getView(final int position, View convertView, ViewGroup parent) {
- ViewHolder holder;
- LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
- // If holder not exist then locate all view from UI file.
- if (convertView == null) {
- // inflate UI from XML file
- convertView = inflater.inflate(R.layout.item_card, parent, false);
- // get all UI view
- holder = new ViewHolder(convertView);
- // set tag for holder
- convertView.setTag(holder);
- } else {
- // if holder created, get tag from view
- holder = (ViewHolder) convertView.getTag();
- }
-
- //setting data to views
- holder.name.setText(getItem(position).getName());
- holder.location.setText(getItem(position).getLocation());
- holder.avatar.setImageBitmap(decodeSampledBitmapFromResource(activity.getResources(),
- getItem(position).getDrawableId(), AVATAR_WIDTH, AVATAR_HEIGHT));
-
- return convertView;
- }
-
- private class ViewHolder{
- private ImageView avatar;
- private TextView name;
- private TextView location;
-
- public ViewHolder(View view) {
- avatar = (ImageView)view.findViewById(R.id.avatar);
- name = (TextView)view.findViewById(R.id.name);
- location = (TextView)view.findViewById(R.id.location);
- }
- }
-
- public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId, int reqWidth, int reqHeight) {
-
- // First decode with inJustDecodeBounds=true to check dimensions
- final BitmapFactory.Options options = new BitmapFactory.Options();
- options.inJustDecodeBounds = true;
- BitmapFactory.decodeResource(res, resId, options);
-
- // Calculate inSampleSize
- options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
-
- // Decode bitmap with inSampleSize set
- options.inJustDecodeBounds = false;
- return BitmapFactory.decodeResource(res, resId, options);
- }
-
- public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
- // Raw height and width of image
- final int height = options.outHeight;
- final int width = options.outWidth;
- int inSampleSize = 1;
-
- if (height > reqHeight || width > reqWidth) {
-
- final int halfHeight = height / 2;
- final int halfWidth = width / 2;
-
- // Calculate the largest inSampleSize value that is a power of 2 and keeps both
- // height and width larger than the requested height and width.
- while ((halfHeight / inSampleSize) >= reqHeight
- && (halfWidth / inSampleSize) >= reqWidth) {
- inSampleSize *= 2;
- }
- }
-
- return inSampleSize;
- }
-}
diff --git a/foodinder_app/app/src/main/java/com/example/foodinder_app/Main2Activity.java b/foodinder_app/app/src/main/java/com/example/foodinder_app/Main2Activity.java
deleted file mode 100644
index dacce41..0000000
--- a/foodinder_app/app/src/main/java/com/example/foodinder_app/Main2Activity.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.example.foodinder_app;
-
-import android.content.Intent;
-import android.support.v7.app.AppCompatActivity;
-import android.os.Bundle;
-import android.view.View;
-
-public class Main2Activity extends AppCompatActivity {
-
- private View button;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main2);
-
- button = findViewById(R.id.button);
-
- button.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view)
- {
- Intent intent = new Intent(Main2Activity.this, swipper.class);
- startActivity(intent);
- }
- });
- }
-}
diff --git a/foodinder_app/app/src/main/java/com/example/foodinder_app/swipper.java b/foodinder_app/app/src/main/java/com/example/foodinder_app/swipper.java
deleted file mode 100644
index 361ff30..0000000
--- a/foodinder_app/app/src/main/java/com/example/foodinder_app/swipper.java
+++ /dev/null
@@ -1,115 +0,0 @@
-package com.example.foodinder_app;
-
-import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
-import android.view.Menu;
-import android.view.MenuItem;
-import android.view.View;
-import android.widget.Toast;
-
-import java.util.ArrayList;
-
-import link.fls.swipestack.SwipeStack;
-
-public class swipper extends AppCompatActivity {
-
- private SwipeStack cardStack;
- private CardsAdapter cardsAdapter;
- private ArrayList cardItems;
- private View btnCancel;
- private View btnLove;
- private int currentPosition;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- cardStack = (SwipeStack) findViewById(R.id.container);
- btnCancel = findViewById(R.id.cancel);
- btnLove = findViewById(R.id.love);
-
- setCardStackAdapter();
- currentPosition = 0;
-
- //Handling swipe event of Cards stack
- cardStack.setListener(new SwipeStack.SwipeStackListener() {
- @Override
- public void onViewSwipedToLeft(int position) {
-
- Toast.makeText(swipper.this, "You liked " + cardItems.get(currentPosition).getName(),
- Toast.LENGTH_SHORT).show();
- currentPosition = position + 1;
-
- }
-
- @Override
- public void onViewSwipedToRight(int position) {
-
- Toast.makeText(swipper.this, "You DON'T liked " + cardItems.get(currentPosition).getName(),
- Toast.LENGTH_SHORT).show();
- currentPosition = position + 1;
- }
-
- @Override
- public void onStackEmpty() {
-
- }
- });
-
- btnCancel.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- cardStack.swipeTopViewToRight();
- }
- });
-
- btnLove.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- cardStack.swipeTopViewToLeft();
- }
- });
- }
-
- private void setCardStackAdapter() {
- cardItems = new ArrayList<>();
-
- cardItems.add(new CardItem(R.drawable.a, "JedzenieA", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.b, "JedzenieB", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.c, "JedzenieC", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.d, "JedzenieD", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.e, "JedzenieE", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.f, "JedzenieF", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.g, "JedzenieG", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.h, "JedzenieH", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.i, "JedzenieI", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.j, "JedzenieJ", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.k, "JedzenieK", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.l, "JedzenieL", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.m, "JedzenieM", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.n, "JedzenieN", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.o, "JedzenieO", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.p, "JedzenieP", "Jedzenie"));
- cardItems.add(new CardItem(R.drawable.r, "JedzenieR", "Jedzenie"));
-
-
- cardsAdapter = new CardsAdapter(this, cardItems);
- cardStack.setAdapter(cardsAdapter);
- }
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.menu_main, menu);
- return true;
- }
-
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- if (item.getItemId() == R.id.reset) {
- cardStack.resetStack();
- currentPosition = 0;
- }
- return super.onOptionsItemSelected(item);
- }
-}
diff --git a/foodinder_app/app/src/main/res/drawable/a.jpg b/foodinder_app/app/src/main/res/drawable/a.jpg
deleted file mode 100644
index 2d9a2b9..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/a.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/b.jpg b/foodinder_app/app/src/main/res/drawable/b.jpg
deleted file mode 100644
index 9f26ffd..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/b.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/c.jpg b/foodinder_app/app/src/main/res/drawable/c.jpg
deleted file mode 100644
index 496f8fc..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/c.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/d.jpg b/foodinder_app/app/src/main/res/drawable/d.jpg
deleted file mode 100644
index fa1ee2b..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/d.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/e.jpg b/foodinder_app/app/src/main/res/drawable/e.jpg
deleted file mode 100644
index 36ee769..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/e.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/f.jpg b/foodinder_app/app/src/main/res/drawable/f.jpg
deleted file mode 100644
index dfb8d67..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/f.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/g.jpg b/foodinder_app/app/src/main/res/drawable/g.jpg
deleted file mode 100644
index dfb8d67..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/g.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/h.jpg b/foodinder_app/app/src/main/res/drawable/h.jpg
deleted file mode 100644
index a805ae0..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/h.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/i.jpg b/foodinder_app/app/src/main/res/drawable/i.jpg
deleted file mode 100644
index b8013cc..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/i.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/j.jpg b/foodinder_app/app/src/main/res/drawable/j.jpg
deleted file mode 100644
index 3145250..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/j.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/k.jpg b/foodinder_app/app/src/main/res/drawable/k.jpg
deleted file mode 100644
index c95369d..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/k.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/l.jpg b/foodinder_app/app/src/main/res/drawable/l.jpg
deleted file mode 100644
index de2fd42..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/l.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/m.jpg b/foodinder_app/app/src/main/res/drawable/m.jpg
deleted file mode 100644
index 88010dc..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/m.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/n.jpg b/foodinder_app/app/src/main/res/drawable/n.jpg
deleted file mode 100644
index 6033e74..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/n.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/o.jpg b/foodinder_app/app/src/main/res/drawable/o.jpg
deleted file mode 100644
index 78cd3b0..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/o.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/p.jpg b/foodinder_app/app/src/main/res/drawable/p.jpg
deleted file mode 100644
index de20486..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/p.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/drawable/r.jpg b/foodinder_app/app/src/main/res/drawable/r.jpg
deleted file mode 100644
index 682a58c..0000000
Binary files a/foodinder_app/app/src/main/res/drawable/r.jpg and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/layout/activity_main.xml b/foodinder_app/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 73061d5..0000000
--- a/foodinder_app/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/foodinder_app/app/src/main/res/layout/activity_main2.xml b/foodinder_app/app/src/main/res/layout/activity_main2.xml
deleted file mode 100644
index b4e1297..0000000
--- a/foodinder_app/app/src/main/res/layout/activity_main2.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/app/src/main/res/layout/item_card.xml b/foodinder_app/app/src/main/res/layout/item_card.xml
deleted file mode 100644
index 4acd58d..0000000
--- a/foodinder_app/app/src/main/res/layout/item_card.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/foodinder_app/app/src/main/res/menu/menu_main.xml b/foodinder_app/app/src/main/res/menu/menu_main.xml
deleted file mode 100644
index cff51b0..0000000
--- a/foodinder_app/app/src/main/res/menu/menu_main.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
diff --git a/foodinder_app/app/src/main/res/mipmap-hdpi/ic_launcher.png b/foodinder_app/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index cde69bc..0000000
Binary files a/foodinder_app/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/mipmap-mdpi/ic_launcher.png b/foodinder_app/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index c133a0c..0000000
Binary files a/foodinder_app/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/foodinder_app/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index bfa42f0..0000000
Binary files a/foodinder_app/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/foodinder_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 324e72c..0000000
Binary files a/foodinder_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/foodinder_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index aee44e1..0000000
Binary files a/foodinder_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/foodinder_app/app/src/main/res/values-w820dp/dimens.xml b/foodinder_app/app/src/main/res/values-w820dp/dimens.xml
deleted file mode 100644
index 63fc816..0000000
--- a/foodinder_app/app/src/main/res/values-w820dp/dimens.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- 64dp
-
diff --git a/foodinder_app/app/src/main/res/values/colors.xml b/foodinder_app/app/src/main/res/values/colors.xml
deleted file mode 100644
index 16d04c8..0000000
--- a/foodinder_app/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #FF0000
- #FF0000
- #FF0000
-
diff --git a/foodinder_app/app/src/main/res/values/dimens.xml b/foodinder_app/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 47c8224..0000000
--- a/foodinder_app/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 16dp
- 16dp
-
diff --git a/foodinder_app/app/src/main/res/values/strings.xml b/foodinder_app/app/src/main/res/values/strings.xml
deleted file mode 100644
index 46dd271..0000000
--- a/foodinder_app/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- Foodinder
-
diff --git a/foodinder_app/app/src/main/res/values/styles.xml b/foodinder_app/app/src/main/res/values/styles.xml
deleted file mode 100644
index 5885930..0000000
--- a/foodinder_app/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
diff --git a/foodinder_app/build.gradle b/foodinder_app/build.gradle
deleted file mode 100644
index 1354946..0000000
--- a/foodinder_app/build.gradle
+++ /dev/null
@@ -1,26 +0,0 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
- ext.kotlin_version = '1.3.61'
- repositories {
- jcenter()
- google()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.5.2'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- jcenter()
- }
-}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/foodinder_app/gradle.properties b/foodinder_app/gradle.properties
deleted file mode 100644
index aac7c9b..0000000
--- a/foodinder_app/gradle.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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.
-org.gradle.jvmargs=-Xmx1536m
-
-# 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
diff --git a/foodinder_app/gradle/wrapper/gradle-wrapper.jar b/foodinder_app/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 13372ae..0000000
Binary files a/foodinder_app/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/foodinder_app/gradle/wrapper/gradle-wrapper.properties b/foodinder_app/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index f8012cc..0000000
--- a/foodinder_app/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Sun Dec 01 13:23:47 CET 2019
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
diff --git a/foodinder_app/gradlew b/foodinder_app/gradlew
deleted file mode 100755
index 9d82f78..0000000
--- a/foodinder_app/gradlew
+++ /dev/null
@@ -1,160 +0,0 @@
-#!/usr/bin/env bash
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn ( ) {
- echo "$*"
-}
-
-die ( ) {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
-esac
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=$((i+1))
- done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
-function splitJvmOpts() {
- JVM_OPTS=("$@")
-}
-eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
-JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
-
-exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/foodinder_app/gradlew.bat b/foodinder_app/gradlew.bat
deleted file mode 100644
index aec9973..0000000
--- a/foodinder_app/gradlew.bat
+++ /dev/null
@@ -1,90 +0,0 @@
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windowz variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-if "%@eval[2+2]" == "4" goto 4NT_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-goto execute
-
-:4NT_args
-@rem Get arguments from the 4NT Shell from JP Software
-set CMD_LINE_ARGS=%$
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/foodinder_app/settings.gradle b/foodinder_app/settings.gradle
deleted file mode 100644
index b8932d2..0000000
--- a/foodinder_app/settings.gradle
+++ /dev/null
@@ -1,2 +0,0 @@
-include ':app'
-rootProject.name='foodinder_app'