MoxyX

Project Url: schoolhelper/MoxyX
Introduction: MoxyX, we added X.
More: Author   ReportBugs   
Tags:

We added X to the Moxy for make this library coolest.

Maven Central

license

Moxy is a library that helps to use MVP pattern when you do the Android Application. _Without problems of lifecycle and boilerplate code!

The main idea of using Moxy: schematic_using

See what's happening here in the wiki.

Diff between us and root project

  1. We support androidX
  2. We don't support GLOBAL and WEAK presenter type
  3. We have one more strategy than core project, AddToEndSingleTagStrategy

RoadMap

  • [ ] We will change the template for android studio (and Intellij), the templates will create a view interface and activity or fragment into one file, and this file and presenter keep into one package. We will remove template for Java.

Capabilities

Moxy has a few killer features in other ways:

  • Presenter stay alive when Activity recreated(it simplify work with multithreading)
  • Automatically restore all that user see when Activity recreated(including dynamic content is added)
  • Capability to changes of many Views from one Presenter

Sample

View interface

interface MainView : MvpView {
    fun printLog(msg: String)
}

class MainActivity : MvpAppCompatActivity(), MainView {

    @InjectPresenter
    internal lateinit var presenter: MainPresenter

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
    }

    override fun printLog(msg: String) {
        Log.e(TAG, "printLog : msg : $msg activity hash code : ${hashCode()}")
    }

    companion object {
        const val TAG = "MoxyDebug"
    }
}

Presenter

@InjectViewState
class MainPresenter : MvpPresenter<MainView>() {
    override fun onFirstViewAttach() {
        super.onFirstViewAttach()
        Log.e(MainActivity.TAG, "presenter hash code : ${hashCode()}")
        viewState.printLog("TEST")
    }
}

Here you can see "Github" sample application.

Wiki

For all information check Moxy Wiki

Android studio and Intellij templates

We will change this template in future In order to avoid boilerplate code creating for binding activity, fragments and its presentation part, we propose to use Android Studio templates for Moxy.

Templates located in /moxy-templates

Telegram channels from original moxy community

Telegram channel (en)
Telegram channel (ru)
References
FAQ

Twitter

For connection with author of this repository use twitter Twitter

Integration

Base modules integration:

implementation 'tech.schoolhelper:moxy-x:1.7.0'

Java project

annotationProcessor 'tech.schoolhelper:moxy-x-compiler:1.7.0'

Kotlin

apply plugin: 'kotlin-kapt'
kapt 'tech.schoolhelper:moxy-x-compiler:1.7.0'

Default android module integration

For additional base view classes MvpActivity and MvpFragment add this:

implementation 'tech.schoolhelper:moxy-x-android:1.7.0'

AppCompat module integration

If you use AppCompat, use MvpAppCompatActivity and MvpAppCompatFragment add this:

implementation 'tech.schoolhelper:moxy-x-app-compat:1.7.0'

AndroidX module integration

If you use AndroidX, use MvpAppCompatActivity and MvpAppCompatFragment add this:

implementation 'tech.schoolhelper:moxy-x-androidx:1.7.0'

AndroidX(Google material) module integration

If you use google material, use MvpBottomSheetDialogFragment add this:

implementation 'tech.schoolhelper:moxy-x-material:1.7.0'

ProGuard

MoxyX is completely without reflection! No special ProGuard rules required.

License

The MIT License (MIT)

Copyright (c) 2016 Arello Mobile

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Apps
About Me
GitHub: Trinea
Facebook: Dev Tools