diff --git a/app/src/main/java/com/codedead/deadhash/domain/utils/StreamUtility.java b/app/src/main/java/com/codedead/deadhash/domain/utils/StreamUtility.java
deleted file mode 100644
index ca0326a..0000000
--- a/app/src/main/java/com/codedead/deadhash/domain/utils/StreamUtility.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.codedead.deadhash.domain.utils;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-
-public final class StreamUtility {
-
- private static final int BASE_BUFFER_SIZE = 1024;
-
- /**
- * Initialize a new StreamUtility
- */
- private StreamUtility() {
- // Empty constructor
- }
-
- /**
- * Copy a stream
- *
- * @param inputStream The InputStream that should be copied
- * @param outputStream The OutputSteam that should contain the copied data
- * @throws IOException When the Stream could not be copied
- */
- public static void copyStream(final InputStream inputStream, final OutputStream outputStream) throws IOException {
- final byte[] bytes = new byte[BASE_BUFFER_SIZE];
- int count;
-
- while ((count = inputStream.read(bytes)) != -1) {
- outputStream.write(bytes, 0, count);
- }
-
- inputStream.close();
- outputStream.flush();
- outputStream.close();
- }
-}
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 04f6356..7cbf2e9 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -36,7 +36,6 @@
Der Play Store kann nicht geöffnet werden!
Website kann nicht geöffnet werden!
Wählen Sie eine Datei aus
- Es kann keine Kopie der ausgewählten Datei erstellt werden!
Die ausgewählte Datei kann nicht geöffnet werden!
Es wurde keine Datei ausgewählt!
Thema
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index fa19a7d..5727c51 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -36,7 +36,6 @@
Impossible d\'ouvrir le Play Store!
Impossible d\'ouvrir le site Web!
Sélectionner un fichier
- Impossible de créer une copie du fichier sélectionné!
Impossible d\'ouvrir le fichier sélectionné!
Aucun fichier n\'a été sélectionné!
Thème
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 287fddb..5d26d8c 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -36,7 +36,6 @@
Impossibile aprire il Play Store!
Impossibile aprire il sito Web!
Seleziona un file
- Impossibile creare una copia del file selezionato!
Impossibile aprire il file selezionato!
Nessun file è stato selezionato!
Tema
diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml
index 4578d0b..de5ebea 100644
--- a/app/src/main/res/values-night/themes.xml
+++ b/app/src/main/res/values-night/themes.xml
@@ -19,7 +19,5 @@
- true
-
-
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index ad7390d..8c666ea 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -36,7 +36,6 @@
Kon de Play Store niet openen!
Kon de website niet openen!
Selecteer een bestand
- Kon geen kopie van het bestand maken!
Kon het geselecteerde bestand niet openen!
Geen bestand geselecteerd!
Thema
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index d8095aa..860a555 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -36,7 +36,6 @@
Não foi possível abrir a Play Store!
Não foi possível abrir o site!
Selecione um arquivo
- Não foi possível criar uma cópia do arquivo selecionado!
Não foi possível abrir o arquivo selecionado!
Nenhum arquivo foi selecionado!
Tema
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index e457cb9..40077dd 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -36,7 +36,6 @@
Не могу открыть Play Store!
Не могу открыть веб-сайт!
Выберите файл
- Не могу копировать выбранный файл!
Не могу открыть выбранный файл!
Не был выбран ни один файл!
Тема
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index bd81416..b8863a3 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -49,7 +49,6 @@
Unable to open website!
Select a file
Unable to open the selected file!
- Unable to create a copy of the selected file!
No file was selected!
Theme
User interface
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
index ef45f57..866a6a2 100644
--- a/app/src/main/res/values/themes.xml
+++ b/app/src/main/res/values/themes.xml
@@ -19,7 +19,5 @@
- true
-
-
diff --git a/build.gradle b/build.gradle
index a0d028f..fb5b7e8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -21,5 +21,5 @@ allprojects {
}
tasks.register('clean', Delete) {
- delete rootProject.buildDir
+ delete layout.buildDirectory
}