Skip to content

Commit fa34777

Browse files
committed
Remove Firebase, Timber, and emojis - keep it simple native
1 parent 3d6c516 commit fa34777

File tree

4 files changed

+11
-50
lines changed

4 files changed

+11
-50
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id("org.jetbrains.kotlin.android")
44
id("com.google.dagger.hilt.android")
55
id("com.google.devtools.ksp")
6-
id("com.google.gms.google-services")
7-
id("com.google.firebase.crashlytics")
86
}
97

108
android {
@@ -123,13 +121,8 @@ dependencies {
123121
// WorkManager
124122
implementation("androidx.work:work-runtime-ktx:2.9.0")
125123

126-
// Firebase
127-
implementation(platform("com.google.firebase:firebase-bom:32.7.0"))
128-
implementation("com.google.firebase:firebase-crashlytics-ktx")
129-
implementation("com.google.firebase:firebase-analytics-ktx")
130-
131-
// Logging - Timber
132-
implementation("com.jakewharton.timber:timber:5.0.1")
124+
// Logging - Timber (optional, can use Log.d instead)
125+
// implementation("com.jakewharton.timber:timber:5.0.1")
133126

134127
// Testing
135128
testImplementation("junit:junit:4.13.2")

app/google-services.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

app/src/main/java/com/appcontrolx/ui/MainActivity.kt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,15 @@ class MainActivity : AppCompatActivity() {
4848

4949
private fun showWhatsNewDialog() {
5050
val whatsNew = """
51-
|🏗️ MVVM Architecture + Hilt DI
52-
|🔥 Firebase Crashlytics integration
53-
|⚡ Optimized release build (ProGuard)
54-
|📊 Beautiful About page with stats
55-
|🚀 Activity Launcher with expandable groups
56-
|🎯 Enhanced batch operations
57-
|🔒 Runtime root/shizuku validation
58-
|🛡️ Enhanced security & input validation
59-
|🎨 Dark/Light theme toggle
60-
|✨ Clean UI improvements
51+
|• MVVM Architecture + Hilt DI
52+
|• Optimized release build (ProGuard)
53+
|• Beautiful About page with stats
54+
|• Activity Launcher with expandable groups
55+
|• Enhanced batch operations
56+
|• Runtime root/shizuku validation
57+
|• Enhanced security & input validation
58+
|• Dark/Light theme toggle
59+
|• Clean UI improvements
6160
""".trimMargin()
6261

6362
MaterialAlertDialogBuilder(this)

build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ plugins {
33
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
44
id("com.google.dagger.hilt.android") version "2.50" apply false
55
id("com.google.devtools.ksp") version "1.9.20-1.0.14" apply false
6-
id("com.google.gms.google-services") version "4.4.0" apply false
7-
id("com.google.firebase.crashlytics") version "2.9.9" apply false
86
}

0 commit comments

Comments
 (0)