diff --git a/app/build.gradle b/app/build.gradle index dcfae4b..b7cdf0a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,6 +20,13 @@ android { } } + productFlavors { + regular { + } + hidden { + } + } + buildTypes { release { minifyEnabled false diff --git a/app/src/hidden/res/mipmap-hdpi/ic_launcher.png b/app/src/hidden/res/mipmap-hdpi/ic_launcher.png new file mode 100755 index 0000000..fc9cfcb Binary files /dev/null and b/app/src/hidden/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/hidden/res/mipmap-mdpi/ic_launcher.png b/app/src/hidden/res/mipmap-mdpi/ic_launcher.png new file mode 100755 index 0000000..6d61eee Binary files /dev/null and b/app/src/hidden/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/hidden/res/mipmap-xhdpi/ic_launcher.png b/app/src/hidden/res/mipmap-xhdpi/ic_launcher.png new file mode 100755 index 0000000..d46b650 Binary files /dev/null and b/app/src/hidden/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/hidden/res/mipmap-xxhdpi/ic_launcher.png b/app/src/hidden/res/mipmap-xxhdpi/ic_launcher.png new file mode 100755 index 0000000..c734d33 Binary files /dev/null and b/app/src/hidden/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/hidden/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/hidden/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100755 index 0000000..201d3d3 Binary files /dev/null and b/app/src/hidden/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/regular/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-hdpi/ic_launcher.png rename to app/src/regular/res/mipmap-hdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/regular/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-mdpi/ic_launcher.png rename to app/src/regular/res/mipmap-mdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/regular/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xhdpi/ic_launcher.png rename to app/src/regular/res/mipmap-xhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/regular/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to app/src/regular/res/mipmap-xxhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/regular/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to app/src/regular/res/mipmap-xxxhdpi/ic_launcher.png