Skip to content
Snippets Groups Projects
Commit c245fc6d authored by kr328's avatar kr328
Browse files

Fix: use hardcoded components package name

parent b8f0c32a
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@ import android.content.ComponentName
import com.github.kr328.clash.common.util.packageName
object Components {
val MAIN_ACTIVITY = ComponentName(packageName, "$packageName.MainActivity")
val PROPERTIES_ACTIVITY = ComponentName(packageName, "$packageName.PropertiesActivity")
private const val componentsPackageName = "com.github.kr328.clash"
val MAIN_ACTIVITY = ComponentName(packageName, "$componentsPackageName.MainActivity")
val PROPERTIES_ACTIVITY = ComponentName(packageName, "$componentsPackageName.PropertiesActivity")
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment