File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
samples/demo-module/src/main/java/com/highcapable/yukihookapi/demo_module/ui/base Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,19 +30,19 @@ import com.highcapable.yukihookapi.hook.xposed.parasitic.activity.proxy.ModuleAc
3030abstract class BaseActivity : AppViewsActivity (), ModuleActivity {
3131
3232 override val moduleTheme get() = R .style.Theme_Default
33-
33+
3434 override fun getClassLoader () = delegate.getClassLoader()
35-
35+
3636 override fun onCreate (savedInstanceState : Bundle ? ) {
3737 delegate.onCreate(savedInstanceState)
3838 super .onCreate(savedInstanceState)
3939 }
40-
40+
4141 override fun onConfigurationChanged (newConfig : Configuration ) {
4242 delegate.onConfigurationChanged(newConfig)
4343 super .onConfigurationChanged(newConfig)
4444 }
45-
45+
4646 override fun onRestoreInstanceState (savedInstanceState : Bundle ) {
4747 delegate.onRestoreInstanceState(savedInstanceState)
4848 super .onRestoreInstanceState(savedInstanceState)
You can’t perform that action at this time.
0 commit comments