Skip to content

Commit f6d7534

Browse files
chore: Rename package from droidworksstudio to codeworkscreativehub
This commit refactors the entire project's package name from `com.github.droidworksstudio.mlauncher` to `com.github.codeworkscreativehub.mlauncher`. This change is applied across all relevant files, including: - All Kotlin source files (`.kt`). - The main `app/build.gradle.kts` file. - Navigation graphs (`nav_graph.xml`). - Room database schema location. - Proguard rules (`proguard-rules.pro`). - Layout XML files where custom views were referenced with the full package name. - Broadcast receiver actions in widget providers to reflect the new namespace.
1 parent e9f4fcd commit f6d7534

File tree

92 files changed

+580
-579
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+580
-579
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ val applicationName = when (type) {
3535
}
3636

3737
android {
38-
namespace = "com.github.droidworksstudio.mlauncher"
38+
namespace = "com.github.codeworkscreativehub.mlauncher"
3939
compileSdk = 36
4040

4141
defaultConfig {

app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
-dontwarn javax.annotation.processing.SupportedOptions
2626

2727
# Keep device info fields
28-
-keepclassmembers class com.github.droidworksstudio.mlauncher.helper.DeviceInfo {
28+
-keepclassmembers class com.github.codeworkscreativehub.mlauncher.helper.DeviceInfo {
2929
*;
3030
}
3131

app/schemas/com.github.droidworksstudio.mlauncher.data.database.WidgetDatabase/1.json renamed to app/schemas/com.github.codeworkscreativehub.mlauncher.data.database.WidgetDatabase/1.json

File renamed without changes.

app/src/main/java/com/github/droidworksstudio/common/AppLogger.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/AppLogger.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.util.Log
4-
import com.github.droidworksstudio.mlauncher.BuildConfig
4+
import com.github.codeworkscreativehub.mlauncher.BuildConfig
55

66
object AppLogger {
77
private const val DEFAULT_TAG = "AppLogger"

app/src/main/java/com/github/droidworksstudio/common/ColorExtensions.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/ColorExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.graphics.Canvas
44
import android.graphics.Color

app/src/main/java/com/github/droidworksstudio/common/ContextExtensions.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/ContextExtensions.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.app.Activity
44
import android.app.ActivityManager
@@ -34,10 +34,10 @@ import androidx.biometric.BiometricManager
3434
import androidx.core.app.ActivityCompat
3535
import androidx.core.content.ContextCompat
3636
import androidx.core.net.toUri
37-
import com.github.droidworksstudio.mlauncher.Mlauncher
38-
import com.github.droidworksstudio.mlauncher.data.Constants
39-
import com.github.droidworksstudio.mlauncher.data.Prefs
40-
import com.github.droidworksstudio.mlauncher.services.ActionService
37+
import com.github.codeworkscreativehub.mlauncher.Mlauncher
38+
import com.github.codeworkscreativehub.mlauncher.data.Constants
39+
import com.github.codeworkscreativehub.mlauncher.data.Prefs
40+
import com.github.codeworkscreativehub.mlauncher.services.ActionService
4141
import java.io.File
4242
import java.text.SimpleDateFormat
4343
import java.util.Calendar

app/src/main/java/com/github/droidworksstudio/common/CrashHandler.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/CrashHandler.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.content.ContentUris
44
import android.content.ContentValues
@@ -9,8 +9,8 @@ import android.net.Uri
99
import android.os.Build
1010
import android.provider.MediaStore
1111
import androidx.core.content.FileProvider
12-
import com.github.droidworksstudio.mlauncher.CrashReportActivity
13-
import com.github.droidworksstudio.mlauncher.helper.getDeviceInfo
12+
import com.github.codeworkscreativehub.mlauncher.CrashReportActivity
13+
import com.github.codeworkscreativehub.mlauncher.helper.getDeviceInfo
1414
import java.io.BufferedReader
1515
import java.io.File
1616
import java.io.InputStreamReader

app/src/main/java/com/github/droidworksstudio/common/FragmentExtensions.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/FragmentExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.annotation.SuppressLint
44
import android.content.Context
@@ -15,7 +15,7 @@ import android.widget.TextView
1515
import androidx.annotation.DrawableRes
1616
import androidx.appcompat.widget.AppCompatImageView
1717
import androidx.fragment.app.Fragment
18-
import com.github.droidworksstudio.mlauncher.R
18+
import com.github.codeworkscreativehub.mlauncher.R
1919

2020
fun Fragment.showLongToast(message: String) {
2121
showCustomToast(this, message, iconRes = R.drawable.ic_toast, delayMillis = 3000L)

app/src/main/java/com/github/droidworksstudio/common/LauncherLocaleManager.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/LauncherLocaleManager.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import androidx.appcompat.app.AppCompatDelegate
4-
import com.github.droidworksstudio.mlauncher.Mlauncher
5-
import com.github.droidworksstudio.mlauncher.data.Constants
6-
import com.github.droidworksstudio.mlauncher.data.Prefs
4+
import com.github.codeworkscreativehub.mlauncher.Mlauncher
5+
import com.github.codeworkscreativehub.mlauncher.data.Constants
6+
import com.github.codeworkscreativehub.mlauncher.data.Prefs
77

88
object LauncherLocaleManager {
99
fun applyAppLanguage() {

app/src/main/java/com/github/droidworksstudio/common/ViewExtensions.kt renamed to app/src/main/java/com/github/codeworkscreativehub/common/ViewExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.github.droidworksstudio.common
1+
package com.github.codeworkscreativehub.common
22

33
import android.annotation.SuppressLint
44
import android.content.Context
55
import android.view.View
66
import android.view.inputmethod.InputMethodManager
7-
import com.github.droidworksstudio.mlauncher.listener.GestureManager
7+
import com.github.codeworkscreativehub.mlauncher.listener.GestureManager
88

99

1010
fun View.showKeyboard() {

0 commit comments

Comments
 (0)