diff --git a/ClimateGoApp/app/.gitignore b/ClimateGoApp/app/.gitignore deleted file mode 100644 index 42afabf..0000000 --- a/ClimateGoApp/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/ClimateGoApp/app/build.gradle b/ClimateGoApp/app/build.gradle deleted file mode 100644 index 161763e..0000000 --- a/ClimateGoApp/app/build.gradle +++ /dev/null @@ -1,45 +0,0 @@ -plugins { - id 'com.android.application' -} - -android { - compileSdk 32 - - defaultConfig { - applicationId "de.cdaut.climatego" - minSdk 21 - targetSdk 32 - versionCode 1 - versionName "1.0" - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - buildFeatures { - viewBinding true - } -} - -dependencies { - - implementation 'androidx.appcompat:appcompat:1.3.0' - implementation 'com.google.android.material:material:1.4.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.4' - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1' - implementation 'androidx.navigation:navigation-fragment:2.3.5' - implementation 'androidx.navigation:navigation-ui:2.3.5' - testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' -} \ No newline at end of file diff --git a/ClimateGoApp/app/proguard-rules.pro b/ClimateGoApp/app/proguard-rules.pro deleted file mode 100644 index 481bb43..0000000 --- a/ClimateGoApp/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 \ No newline at end of file diff --git a/ClimateGoApp/app/src/androidTest/java/de/cdaut/climatego/ExampleInstrumentedTest.java b/ClimateGoApp/app/src/androidTest/java/de/cdaut/climatego/ExampleInstrumentedTest.java deleted file mode 100644 index 9a256fc..0000000 --- a/ClimateGoApp/app/src/androidTest/java/de/cdaut/climatego/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package de.cdaut.climatego; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("de.cdaut.climatego", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/AndroidManifest.xml b/ClimateGoApp/app/src/main/AndroidManifest.xml deleted file mode 100644 index 390921c..0000000 --- a/ClimateGoApp/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/MainActivity.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/MainActivity.java deleted file mode 100644 index ef18780..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/MainActivity.java +++ /dev/null @@ -1,65 +0,0 @@ -package de.cdaut.climatego; - -import android.os.Bundle; -import android.view.View; -import android.view.Menu; - -import com.google.android.material.snackbar.Snackbar; -import com.google.android.material.navigation.NavigationView; - -import androidx.navigation.NavController; -import androidx.navigation.Navigation; -import androidx.navigation.ui.AppBarConfiguration; -import androidx.navigation.ui.NavigationUI; -import androidx.drawerlayout.widget.DrawerLayout; -import androidx.appcompat.app.AppCompatActivity; - -import de.cdaut.climatego.databinding.ActivityMainBinding; - -public class MainActivity extends AppCompatActivity { - - private AppBarConfiguration mAppBarConfiguration; - private ActivityMainBinding binding; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - binding = ActivityMainBinding.inflate(getLayoutInflater()); - setContentView(binding.getRoot()); - - setSupportActionBar(binding.appBarMain.toolbar); - binding.appBarMain.fab.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View view) { - Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) - .setAction("Action", null).show(); - } - }); - DrawerLayout drawer = binding.drawerLayout; - NavigationView navigationView = binding.navView; - // Passing each menu ID as a set of Ids because each - // menu should be considered as top level destinations. - mAppBarConfiguration = new AppBarConfiguration.Builder( - R.id.nav_home, R.id.nav_gallery, R.id.nav_slideshow) - .setOpenableLayout(drawer) - .build(); - NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment_content_main); - NavigationUI.setupActionBarWithNavController(this, navController, mAppBarConfiguration); - NavigationUI.setupWithNavController(navigationView, navController); - } - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - // Inflate the menu; this adds items to the action bar if it is present. - getMenuInflater().inflate(R.menu.main, menu); - return true; - } - - @Override - public boolean onSupportNavigateUp() { - NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment_content_main); - return NavigationUI.navigateUp(navController, mAppBarConfiguration) - || super.onSupportNavigateUp(); - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryFragment.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryFragment.java deleted file mode 100644 index 2688582..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryFragment.java +++ /dev/null @@ -1,37 +0,0 @@ -package de.cdaut.climatego.ui.gallery; - -import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.TextView; - -import androidx.annotation.NonNull; -import androidx.fragment.app.Fragment; -import androidx.lifecycle.ViewModelProvider; - -import de.cdaut.climatego.databinding.FragmentGalleryBinding; - -public class GalleryFragment extends Fragment { - - private FragmentGalleryBinding binding; - - public View onCreateView(@NonNull LayoutInflater inflater, - ViewGroup container, Bundle savedInstanceState) { - GalleryViewModel galleryViewModel = - new ViewModelProvider(this).get(GalleryViewModel.class); - - binding = FragmentGalleryBinding.inflate(inflater, container, false); - View root = binding.getRoot(); - - final TextView textView = binding.textGallery; - galleryViewModel.getText().observe(getViewLifecycleOwner(), textView::setText); - return root; - } - - @Override - public void onDestroyView() { - super.onDestroyView(); - binding = null; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryViewModel.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryViewModel.java deleted file mode 100644 index f37f0b0..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/gallery/GalleryViewModel.java +++ /dev/null @@ -1,19 +0,0 @@ -package de.cdaut.climatego.ui.gallery; - -import androidx.lifecycle.LiveData; -import androidx.lifecycle.MutableLiveData; -import androidx.lifecycle.ViewModel; - -public class GalleryViewModel extends ViewModel { - - private final MutableLiveData mText; - - public GalleryViewModel() { - mText = new MutableLiveData<>(); - mText.setValue("This is gallery fragment"); - } - - public LiveData getText() { - return mText; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeFragment.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeFragment.java deleted file mode 100644 index d7139eb..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeFragment.java +++ /dev/null @@ -1,37 +0,0 @@ -package de.cdaut.climatego.ui.home; - -import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.TextView; - -import androidx.annotation.NonNull; -import androidx.fragment.app.Fragment; -import androidx.lifecycle.ViewModelProvider; - -import de.cdaut.climatego.databinding.FragmentHomeBinding; - -public class HomeFragment extends Fragment { - - private FragmentHomeBinding binding; - - public View onCreateView(@NonNull LayoutInflater inflater, - ViewGroup container, Bundle savedInstanceState) { - HomeViewModel homeViewModel = - new ViewModelProvider(this).get(HomeViewModel.class); - - binding = FragmentHomeBinding.inflate(inflater, container, false); - View root = binding.getRoot(); - - final TextView textView = binding.textHome; - homeViewModel.getText().observe(getViewLifecycleOwner(), textView::setText); - return root; - } - - @Override - public void onDestroyView() { - super.onDestroyView(); - binding = null; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeViewModel.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeViewModel.java deleted file mode 100644 index 7bbb2a1..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/home/HomeViewModel.java +++ /dev/null @@ -1,19 +0,0 @@ -package de.cdaut.climatego.ui.home; - -import androidx.lifecycle.LiveData; -import androidx.lifecycle.MutableLiveData; -import androidx.lifecycle.ViewModel; - -public class HomeViewModel extends ViewModel { - - private final MutableLiveData mText; - - public HomeViewModel() { - mText = new MutableLiveData<>(); - mText.setValue("This is home fragment"); - } - - public LiveData getText() { - return mText; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowFragment.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowFragment.java deleted file mode 100644 index 7148c1d..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowFragment.java +++ /dev/null @@ -1,37 +0,0 @@ -package de.cdaut.climatego.ui.slideshow; - -import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.TextView; - -import androidx.annotation.NonNull; -import androidx.fragment.app.Fragment; -import androidx.lifecycle.ViewModelProvider; - -import de.cdaut.climatego.databinding.FragmentSlideshowBinding; - -public class SlideshowFragment extends Fragment { - - private FragmentSlideshowBinding binding; - - public View onCreateView(@NonNull LayoutInflater inflater, - ViewGroup container, Bundle savedInstanceState) { - SlideshowViewModel slideshowViewModel = - new ViewModelProvider(this).get(SlideshowViewModel.class); - - binding = FragmentSlideshowBinding.inflate(inflater, container, false); - View root = binding.getRoot(); - - final TextView textView = binding.textSlideshow; - slideshowViewModel.getText().observe(getViewLifecycleOwner(), textView::setText); - return root; - } - - @Override - public void onDestroyView() { - super.onDestroyView(); - binding = null; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowViewModel.java b/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowViewModel.java deleted file mode 100644 index b9b482e..0000000 --- a/ClimateGoApp/app/src/main/java/de/cdaut/climatego/ui/slideshow/SlideshowViewModel.java +++ /dev/null @@ -1,19 +0,0 @@ -package de.cdaut.climatego.ui.slideshow; - -import androidx.lifecycle.LiveData; -import androidx.lifecycle.MutableLiveData; -import androidx.lifecycle.ViewModel; - -public class SlideshowViewModel extends ViewModel { - - private final MutableLiveData mText; - - public SlideshowViewModel() { - mText = new MutableLiveData<>(); - mText.setValue("This is slideshow fragment"); - } - - public LiveData getText() { - return mText; - } -} \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/ClimateGoApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d1..0000000 --- a/ClimateGoApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/drawable/ic_launcher_background.xml b/ClimateGoApp/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9..0000000 --- a/ClimateGoApp/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ClimateGoApp/app/src/main/res/drawable/ic_menu_camera.xml b/ClimateGoApp/app/src/main/res/drawable/ic_menu_camera.xml deleted file mode 100644 index 634fe92..0000000 --- a/ClimateGoApp/app/src/main/res/drawable/ic_menu_camera.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - diff --git a/ClimateGoApp/app/src/main/res/drawable/ic_menu_gallery.xml b/ClimateGoApp/app/src/main/res/drawable/ic_menu_gallery.xml deleted file mode 100644 index 03c7709..0000000 --- a/ClimateGoApp/app/src/main/res/drawable/ic_menu_gallery.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/ClimateGoApp/app/src/main/res/drawable/ic_menu_slideshow.xml b/ClimateGoApp/app/src/main/res/drawable/ic_menu_slideshow.xml deleted file mode 100644 index 5e9e163..0000000 --- a/ClimateGoApp/app/src/main/res/drawable/ic_menu_slideshow.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/ClimateGoApp/app/src/main/res/drawable/side_nav_bar.xml b/ClimateGoApp/app/src/main/res/drawable/side_nav_bar.xml deleted file mode 100644 index 6d81870..0000000 --- a/ClimateGoApp/app/src/main/res/drawable/side_nav_bar.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/activity_main.xml b/ClimateGoApp/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 6c7dd7c..0000000 --- a/ClimateGoApp/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/app_bar_main.xml b/ClimateGoApp/app/src/main/res/layout/app_bar_main.xml deleted file mode 100644 index 2a58f0d..0000000 --- a/ClimateGoApp/app/src/main/res/layout/app_bar_main.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/content_main.xml b/ClimateGoApp/app/src/main/res/layout/content_main.xml deleted file mode 100644 index 6e0ea39..0000000 --- a/ClimateGoApp/app/src/main/res/layout/content_main.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/fragment_gallery.xml b/ClimateGoApp/app/src/main/res/layout/fragment_gallery.xml deleted file mode 100644 index 643fe25..0000000 --- a/ClimateGoApp/app/src/main/res/layout/fragment_gallery.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/fragment_home.xml b/ClimateGoApp/app/src/main/res/layout/fragment_home.xml deleted file mode 100644 index f3d9b08..0000000 --- a/ClimateGoApp/app/src/main/res/layout/fragment_home.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/fragment_slideshow.xml b/ClimateGoApp/app/src/main/res/layout/fragment_slideshow.xml deleted file mode 100644 index 2141a33..0000000 --- a/ClimateGoApp/app/src/main/res/layout/fragment_slideshow.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/layout/nav_header_main.xml b/ClimateGoApp/app/src/main/res/layout/nav_header_main.xml deleted file mode 100644 index c145545..0000000 --- a/ClimateGoApp/app/src/main/res/layout/nav_header_main.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/menu/activity_main_drawer.xml b/ClimateGoApp/app/src/main/res/menu/activity_main_drawer.xml deleted file mode 100644 index d7f2df2..0000000 --- a/ClimateGoApp/app/src/main/res/menu/activity_main_drawer.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/menu/main.xml b/ClimateGoApp/app/src/main/res/menu/main.xml deleted file mode 100644 index 412d5f8..0000000 --- a/ClimateGoApp/app/src/main/res/menu/main.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml deleted file mode 100644 index eca70cf..0000000 --- a/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml deleted file mode 100644 index eca70cf..0000000 --- a/ClimateGoApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d6..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611d..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a307..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a695..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f50..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d642..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae3..0000000 Binary files a/ClimateGoApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/ClimateGoApp/app/src/main/res/navigation/mobile_navigation.xml b/ClimateGoApp/app/src/main/res/navigation/mobile_navigation.xml deleted file mode 100644 index 40164dc..0000000 --- a/ClimateGoApp/app/src/main/res/navigation/mobile_navigation.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values-land/dimens.xml b/ClimateGoApp/app/src/main/res/values-land/dimens.xml deleted file mode 100644 index 22d7f00..0000000 --- a/ClimateGoApp/app/src/main/res/values-land/dimens.xml +++ /dev/null @@ -1,3 +0,0 @@ - - 48dp - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values-night/themes.xml b/ClimateGoApp/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 94150cd..0000000 --- a/ClimateGoApp/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values-w1240dp/dimens.xml b/ClimateGoApp/app/src/main/res/values-w1240dp/dimens.xml deleted file mode 100644 index d73f4a3..0000000 --- a/ClimateGoApp/app/src/main/res/values-w1240dp/dimens.xml +++ /dev/null @@ -1,3 +0,0 @@ - - 200dp - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values-w600dp/dimens.xml b/ClimateGoApp/app/src/main/res/values-w600dp/dimens.xml deleted file mode 100644 index 22d7f00..0000000 --- a/ClimateGoApp/app/src/main/res/values-w600dp/dimens.xml +++ /dev/null @@ -1,3 +0,0 @@ - - 48dp - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values/colors.xml b/ClimateGoApp/app/src/main/res/values/colors.xml deleted file mode 100644 index f8c6127..0000000 --- a/ClimateGoApp/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - #FFBB86FC - #FF6200EE - #FF3700B3 - #FF03DAC5 - #FF018786 - #FF000000 - #FFFFFFFF - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values/dimens.xml b/ClimateGoApp/app/src/main/res/values/dimens.xml deleted file mode 100644 index 4ab4520..0000000 --- a/ClimateGoApp/app/src/main/res/values/dimens.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - 16dp - 16dp - 8dp - 176dp - 16dp - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values/strings.xml b/ClimateGoApp/app/src/main/res/values/strings.xml deleted file mode 100644 index 47e1ece..0000000 --- a/ClimateGoApp/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,13 +0,0 @@ - - ClimateGo - Open navigation drawer - Close navigation drawer - Android Studio - android.studio@android.com - Navigation header - Settings - - Home - Gallery - Slideshow - \ No newline at end of file diff --git a/ClimateGoApp/app/src/main/res/values/themes.xml b/ClimateGoApp/app/src/main/res/values/themes.xml deleted file mode 100644 index 71490e2..0000000 --- a/ClimateGoApp/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - -