diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index b76ab9eb5ccadad41d9b32cd01fcfb6114c90e2f..5e93ee9f93baff6f72ea3ddb05efbf6ad4b8d61b 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -41,7 +41,6 @@
     </XML>
     <codeStyleSettings language="Groovy">
       <indentOptions>
-        <option name="USE_TAB_CHARACTER" value="true" />
         <option name="SMART_TABS" value="true" />
       </indentOptions>
     </codeStyleSettings>
diff --git a/dont-kill-me-lib/build.gradle b/dont-kill-me-lib/build.gradle
index 9c180a0b0e2c338381c2f15e28082c7d20b0317b..e882c0bf7c18ed4f0b3021734f4a412c1915afc5 100644
--- a/dont-kill-me-lib/build.gradle
+++ b/dont-kill-me-lib/build.gradle
@@ -1,32 +1,32 @@
 plugins {
-	id 'com.android.library'
+    id 'com.android.library'
 }
 
 android {
-	compileSdkVersion 31
+    compileSdkVersion 31
 
-	defaultConfig {
-		minSdkVersion 16
-		targetSdkVersion 30
+    defaultConfig {
+        minSdkVersion 16
+        targetSdkVersion 30
 
-		vectorDrawables.useSupportLibrary = true
-		consumerProguardFiles "consumer-rules.pro"
-	}
+        vectorDrawables.useSupportLibrary = true
+        consumerProguardFiles "consumer-rules.pro"
+    }
 
-	buildTypes {
-		release {
-			minifyEnabled false
-			proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
-		}
-	}
-	compileOptions {
-		sourceCompatibility JavaVersion.VERSION_1_8
-		targetCompatibility JavaVersion.VERSION_1_8
-	}
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+        }
+    }
+    compileOptions {
+        sourceCompatibility JavaVersion.VERSION_1_8
+        targetCompatibility JavaVersion.VERSION_1_8
+    }
 }
 
 dependencies {
-	implementation "androidx.fragment:fragment:$androidx_fragment_version"
-	implementation "androidx.constraintlayout:constraintlayout:$androidx_constraintlayout_version"
-	implementation "com.google.android.material:material:$google_material_version"
+    implementation "androidx.fragment:fragment:$androidx_fragment_version"
+    implementation "androidx.constraintlayout:constraintlayout:$androidx_constraintlayout_version"
+    implementation "com.google.android.material:material:$google_material_version"
 }