Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.sergevalevich:moxy:1.5.8'
}
dependencies {
implementation("com.github.sergevalevich:moxy:1.5.8")
}
<dependency>
<groupId>com.github.sergevalevich</groupId>
<artifactId>moxy</artifactId>
<version>1.5.8</version>
</dependency>
libraryDependencies += "com.github.sergevalevich" % "moxy" % "1.5.8"
:dependencies [[com.github.sergevalevich/moxy "1.5.8"]]
We added X to the Moxy for make this library coolest.
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:
See what's happening here in the wiki.
RoadMap
Moxy has a few killer features in other ways:
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.
For all information check Moxy Wiki
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)<br /> Telegram channel (ru)<br /> References<br /> FAQ
For connection with author of this repository use twitter Twitter
implementation 'tech.schoolhelper:moxy-x:1.7.0'
annotationProcessor 'tech.schoolhelper:moxy-x-compiler:1.7.0'
apply plugin: 'kotlin-kapt'
kapt 'tech.schoolhelper:moxy-x-compiler:1.7.0'
For additional base view classes MvpActivity
and MvpFragment
add this:
implementation 'tech.schoolhelper:moxy-x-android:1.7.0'
If you use AppCompat, use MvpAppCompatActivity
and MvpAppCompatFragment
add this:
implementation 'tech.schoolhelper:moxy-x-app-compat:1.7.0'
If you use AndroidX, use MvpAppCompatActivity
and MvpAppCompatFragment
add this:
implementation 'tech.schoolhelper:moxy-x-androidx:1.7.0'
If you use google material, use MvpBottomSheetDialogFragment
add this:
implementation 'tech.schoolhelper:moxy-x-material:1.7.0'
MoxyX is completely without reflection! No special ProGuard rules required.
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.