diff --git a/ListifyFrontend/.gitignore b/Listify/.gitignore similarity index 100% rename from ListifyFrontend/.gitignore rename to Listify/.gitignore diff --git a/Listify/.idea/gradle.xml b/Listify/.idea/gradle.xml new file mode 100644 index 0000000..7b5f1f4 --- /dev/null +++ b/Listify/.idea/gradle.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/ListifyFrontend/.idea/misc.xml b/Listify/.idea/misc.xml similarity index 79% rename from ListifyFrontend/.idea/misc.xml rename to Listify/.idea/misc.xml index 37a7509..892046b 100644 --- a/ListifyFrontend/.idea/misc.xml +++ b/Listify/.idea/misc.xml @@ -1,6 +1,6 @@ - + diff --git a/ListifyFrontend/app/.gitignore b/Listify/app/.gitignore similarity index 100% rename from ListifyFrontend/app/.gitignore rename to Listify/app/.gitignore diff --git a/ListifyFrontend/app/build.gradle b/Listify/app/build.gradle similarity index 100% rename from ListifyFrontend/app/build.gradle rename to Listify/app/build.gradle diff --git a/ListifyFrontend/app/proguard-rules.pro b/Listify/app/proguard-rules.pro similarity index 100% rename from ListifyFrontend/app/proguard-rules.pro rename to Listify/app/proguard-rules.pro diff --git a/ListifyFrontend/app/src/androidTest/java/com/example/listify/ExampleInstrumentedTest.java b/Listify/app/src/androidTest/java/com/example/listify/ExampleInstrumentedTest.java similarity index 100% rename from ListifyFrontend/app/src/androidTest/java/com/example/listify/ExampleInstrumentedTest.java rename to Listify/app/src/androidTest/java/com/example/listify/ExampleInstrumentedTest.java diff --git a/ListifyFrontend/app/src/main/AndroidManifest.xml b/Listify/app/src/main/AndroidManifest.xml similarity index 100% rename from ListifyFrontend/app/src/main/AndroidManifest.xml rename to Listify/app/src/main/AndroidManifest.xml diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/MainActivity.java b/Listify/app/src/main/java/com/example/listify/MainActivity.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/MainActivity.java rename to Listify/app/src/main/java/com/example/listify/MainActivity.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/gallery/GalleryFragment.java b/Listify/app/src/main/java/com/example/listify/ui/gallery/GalleryFragment.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/gallery/GalleryFragment.java rename to Listify/app/src/main/java/com/example/listify/ui/gallery/GalleryFragment.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/gallery/GalleryViewModel.java b/Listify/app/src/main/java/com/example/listify/ui/gallery/GalleryViewModel.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/gallery/GalleryViewModel.java rename to Listify/app/src/main/java/com/example/listify/ui/gallery/GalleryViewModel.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/home/HomeFragment.java b/Listify/app/src/main/java/com/example/listify/ui/home/HomeFragment.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/home/HomeFragment.java rename to Listify/app/src/main/java/com/example/listify/ui/home/HomeFragment.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/home/HomeViewModel.java b/Listify/app/src/main/java/com/example/listify/ui/home/HomeViewModel.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/home/HomeViewModel.java rename to Listify/app/src/main/java/com/example/listify/ui/home/HomeViewModel.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/slideshow/SlideshowFragment.java b/Listify/app/src/main/java/com/example/listify/ui/slideshow/SlideshowFragment.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/slideshow/SlideshowFragment.java rename to Listify/app/src/main/java/com/example/listify/ui/slideshow/SlideshowFragment.java diff --git a/ListifyFrontend/app/src/main/java/com/example/listify/ui/slideshow/SlideshowViewModel.java b/Listify/app/src/main/java/com/example/listify/ui/slideshow/SlideshowViewModel.java similarity index 100% rename from ListifyFrontend/app/src/main/java/com/example/listify/ui/slideshow/SlideshowViewModel.java rename to Listify/app/src/main/java/com/example/listify/ui/slideshow/SlideshowViewModel.java diff --git a/ListifyFrontend/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/Listify/app/src/main/res/drawable-v24/ic_launcher_foreground.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable-v24/ic_launcher_foreground.xml rename to Listify/app/src/main/res/drawable-v24/ic_launcher_foreground.xml diff --git a/ListifyFrontend/app/src/main/res/drawable/ic_launcher_background.xml b/Listify/app/src/main/res/drawable/ic_launcher_background.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable/ic_launcher_background.xml rename to Listify/app/src/main/res/drawable/ic_launcher_background.xml diff --git a/ListifyFrontend/app/src/main/res/drawable/ic_menu_camera.xml b/Listify/app/src/main/res/drawable/ic_menu_camera.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable/ic_menu_camera.xml rename to Listify/app/src/main/res/drawable/ic_menu_camera.xml diff --git a/ListifyFrontend/app/src/main/res/drawable/ic_menu_gallery.xml b/Listify/app/src/main/res/drawable/ic_menu_gallery.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable/ic_menu_gallery.xml rename to Listify/app/src/main/res/drawable/ic_menu_gallery.xml diff --git a/ListifyFrontend/app/src/main/res/drawable/ic_menu_slideshow.xml b/Listify/app/src/main/res/drawable/ic_menu_slideshow.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable/ic_menu_slideshow.xml rename to Listify/app/src/main/res/drawable/ic_menu_slideshow.xml diff --git a/ListifyFrontend/app/src/main/res/drawable/side_nav_bar.xml b/Listify/app/src/main/res/drawable/side_nav_bar.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/drawable/side_nav_bar.xml rename to Listify/app/src/main/res/drawable/side_nav_bar.xml diff --git a/ListifyFrontend/app/src/main/res/layout/activity_main.xml b/Listify/app/src/main/res/layout/activity_main.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/activity_main.xml rename to Listify/app/src/main/res/layout/activity_main.xml diff --git a/ListifyFrontend/app/src/main/res/layout/app_bar_main.xml b/Listify/app/src/main/res/layout/app_bar_main.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/app_bar_main.xml rename to Listify/app/src/main/res/layout/app_bar_main.xml diff --git a/ListifyFrontend/app/src/main/res/layout/content_main.xml b/Listify/app/src/main/res/layout/content_main.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/content_main.xml rename to Listify/app/src/main/res/layout/content_main.xml diff --git a/ListifyFrontend/app/src/main/res/layout/fragment_gallery.xml b/Listify/app/src/main/res/layout/fragment_gallery.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/fragment_gallery.xml rename to Listify/app/src/main/res/layout/fragment_gallery.xml diff --git a/ListifyFrontend/app/src/main/res/layout/fragment_home.xml b/Listify/app/src/main/res/layout/fragment_home.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/fragment_home.xml rename to Listify/app/src/main/res/layout/fragment_home.xml diff --git a/ListifyFrontend/app/src/main/res/layout/fragment_slideshow.xml b/Listify/app/src/main/res/layout/fragment_slideshow.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/fragment_slideshow.xml rename to Listify/app/src/main/res/layout/fragment_slideshow.xml diff --git a/ListifyFrontend/app/src/main/res/layout/nav_header_main.xml b/Listify/app/src/main/res/layout/nav_header_main.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/layout/nav_header_main.xml rename to Listify/app/src/main/res/layout/nav_header_main.xml diff --git a/ListifyFrontend/app/src/main/res/menu/activity_main_drawer.xml b/Listify/app/src/main/res/menu/activity_main_drawer.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/menu/activity_main_drawer.xml rename to Listify/app/src/main/res/menu/activity_main_drawer.xml diff --git a/ListifyFrontend/app/src/main/res/menu/main.xml b/Listify/app/src/main/res/menu/main.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/menu/main.xml rename to Listify/app/src/main/res/menu/main.xml diff --git a/ListifyFrontend/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/Listify/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml rename to Listify/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml diff --git a/ListifyFrontend/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/Listify/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml rename to Listify/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml diff --git a/ListifyFrontend/app/src/main/res/mipmap-hdpi/ic_launcher.png b/Listify/app/src/main/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-hdpi/ic_launcher.png rename to Listify/app/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/Listify/app/src/main/res/mipmap-hdpi/ic_launcher_round.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-hdpi/ic_launcher_round.png rename to Listify/app/src/main/res/mipmap-hdpi/ic_launcher_round.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-mdpi/ic_launcher.png b/Listify/app/src/main/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-mdpi/ic_launcher.png rename to Listify/app/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/Listify/app/src/main/res/mipmap-mdpi/ic_launcher_round.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-mdpi/ic_launcher_round.png rename to Listify/app/src/main/res/mipmap-mdpi/ic_launcher_round.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/Listify/app/src/main/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xhdpi/ic_launcher.png rename to Listify/app/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/Listify/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png rename to Listify/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Listify/app/src/main/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to Listify/app/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/Listify/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png rename to Listify/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Listify/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to Listify/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/ListifyFrontend/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/Listify/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png similarity index 100% rename from ListifyFrontend/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png rename to Listify/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png diff --git a/ListifyFrontend/app/src/main/res/navigation/mobile_navigation.xml b/Listify/app/src/main/res/navigation/mobile_navigation.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/navigation/mobile_navigation.xml rename to Listify/app/src/main/res/navigation/mobile_navigation.xml diff --git a/ListifyFrontend/app/src/main/res/values/colors.xml b/Listify/app/src/main/res/values/colors.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/values/colors.xml rename to Listify/app/src/main/res/values/colors.xml diff --git a/ListifyFrontend/app/src/main/res/values/dimens.xml b/Listify/app/src/main/res/values/dimens.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/values/dimens.xml rename to Listify/app/src/main/res/values/dimens.xml diff --git a/ListifyFrontend/app/src/main/res/values/strings.xml b/Listify/app/src/main/res/values/strings.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/values/strings.xml rename to Listify/app/src/main/res/values/strings.xml diff --git a/ListifyFrontend/app/src/main/res/values/styles.xml b/Listify/app/src/main/res/values/styles.xml similarity index 100% rename from ListifyFrontend/app/src/main/res/values/styles.xml rename to Listify/app/src/main/res/values/styles.xml diff --git a/ListifyFrontend/app/src/test/java/com/example/listify/ExampleUnitTest.java b/Listify/app/src/test/java/com/example/listify/ExampleUnitTest.java similarity index 100% rename from ListifyFrontend/app/src/test/java/com/example/listify/ExampleUnitTest.java rename to Listify/app/src/test/java/com/example/listify/ExampleUnitTest.java diff --git a/ListifyFrontend/build.gradle b/Listify/build.gradle similarity index 92% rename from ListifyFrontend/build.gradle rename to Listify/build.gradle index 6754c23..ea0fbb2 100644 --- a/ListifyFrontend/build.gradle +++ b/Listify/build.gradle @@ -3,6 +3,7 @@ buildscript { repositories { google() jcenter() + mavenCentral() } dependencies { classpath "com.android.tools.build:gradle:4.0.1" @@ -16,6 +17,7 @@ allprojects { repositories { google() jcenter() + mavenCentral() } } diff --git a/ListifyFrontend/gradle.properties b/Listify/gradle.properties similarity index 100% rename from ListifyFrontend/gradle.properties rename to Listify/gradle.properties diff --git a/ListifyFrontend/gradle/wrapper/gradle-wrapper.jar b/Listify/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from ListifyFrontend/gradle/wrapper/gradle-wrapper.jar rename to Listify/gradle/wrapper/gradle-wrapper.jar diff --git a/ListifyFrontend/gradle/wrapper/gradle-wrapper.properties b/Listify/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from ListifyFrontend/gradle/wrapper/gradle-wrapper.properties rename to Listify/gradle/wrapper/gradle-wrapper.properties diff --git a/ListifyFrontend/gradlew b/Listify/gradlew similarity index 100% rename from ListifyFrontend/gradlew rename to Listify/gradlew diff --git a/ListifyFrontend/gradlew.bat b/Listify/gradlew.bat similarity index 100% rename from ListifyFrontend/gradlew.bat rename to Listify/gradlew.bat diff --git a/ListifyFrontend/settings.gradle b/Listify/settings.gradle similarity index 100% rename from ListifyFrontend/settings.gradle rename to Listify/settings.gradle diff --git a/ListifyFrontend/.idea/.name b/ListifyFrontend/.idea/.name deleted file mode 100644 index e954ed4..0000000 --- a/ListifyFrontend/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -Listify \ No newline at end of file diff --git a/ListifyFrontend/.idea/codeStyles/Project.xml b/ListifyFrontend/.idea/codeStyles/Project.xml deleted file mode 100644 index 681f41a..0000000 --- a/ListifyFrontend/.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/ListifyFrontend/.idea/gradle.xml b/ListifyFrontend/.idea/gradle.xml deleted file mode 100644 index f04c37f..0000000 --- a/ListifyFrontend/.idea/gradle.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/ListifyFrontend/.idea/jarRepositories.xml b/ListifyFrontend/.idea/jarRepositories.xml deleted file mode 100644 index a5f05cd..0000000 --- a/ListifyFrontend/.idea/jarRepositories.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/ListifyFrontend/.idea/modules.xml b/ListifyFrontend/.idea/modules.xml new file mode 100644 index 0000000..28d6d3e --- /dev/null +++ b/ListifyFrontend/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/ListifyFrontend/.idea/runConfigurations.xml b/ListifyFrontend/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460..0000000 --- a/ListifyFrontend/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file