diff --git a/.gitignore b/.gitignore
index e6927c97c..7fcc37e9d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -119,5 +119,11 @@ lib/monero/monero.dart
ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_180.png
ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_120.png
-android/app/src/main/res/
+android/app/src/main/res/mipmap-*
+android/app/src/main/res/drawable/ic_launcher.png
+!android/app/src/main/res/drawable/launch_background.xml
+!android/app/src/main/res/values/styles.xml
assets/images/app_logo.png
+
+/pubspec.yaml
+/pubspec.lock
diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index b2c4ad887..000000000
--- a/android/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/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index b11806d56..000000000
Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index b76508e83..000000000
Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 1d32c2836..000000000
Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d5b7374a7..000000000
Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index af40ea947..000000000
Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/pubspec.lock b/pubspec.lock
deleted file mode 100644
index 0902e0ea5..000000000
--- a/pubspec.lock
+++ /dev/null
@@ -1,5 +0,0 @@
-# Generated by pub
-# See https://dart.dev/tools/pub/glossary#lockfile
-packages: {}
-sdks:
- dart: ">=2.7.0 <3.0.0"
diff --git a/pubspec.yaml b/pubspec.yaml
deleted file mode 100644
index 8c7e07775..000000000
--- a/pubspec.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
-name: cake_wallet
-description: Cake Wallet.
-version: 0.0.0
-
-environment:
- sdk: ">=2.7.0 <3.0.0"
\ No newline at end of file
diff --git a/tool/generate_pubspec.dart b/tool/generate_pubspec.dart
index 6ac46411c..dc2e8131a 100644
--- a/tool/generate_pubspec.dart
+++ b/tool/generate_pubspec.dart
@@ -9,7 +9,7 @@ Future main(List args) async {
final pubspecDescription = File(pubspecDescriptionPath);
if (!pubspecBase.existsSync() || !pubspecDescription.existsSync()) {
- throw('$pubspecBasePath or $pubspecDescriptionPath doesn't exists');
+ throw("$pubspecBasePath or $pubspecDescriptionPath doesn't exists");
}
final pubspecBaseContent = await pubspecBase.readAsString();