# TheMVP **Repository Path**: cbdWork/TheMVP ## Basic Information - **Project Name**: TheMVP - **Description**: An homs MVP Architecture Diagram Framwork. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2021-06-30 - **Last Updated**: 2021-06-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## TheMVP简介 An homs MVP Architecture Diagram Framwork. 怎样从架构级别去搭建一个APP,怎样让他应对日益更改的界面与业务逻辑? 越小的类,bug越不容易出现,越容易调试,更容易测试,我相信这一点大家是都赞同的。在MVP模式下,View和Model是完全分离没有任何直接关联的(比如你在View层中完全不需要导Model的包,也不应该去关联它们)。 使用MVP模式能够更方便的帮助Ability(或AbiltySlice)职责分离,减小类体积,使项目结构更加清晰。 ## 构建 ``` 1.将entry模块config.json的"visible": false去掉 2.entry运行要求,通过DevEco studio,并下载openHormony SDK,将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即你的IDE新建项目中所用的版本) ``` ## 如何在自己的项目使用 gradle ``` allprojects{ repositories{ mavenCentral() } } implementation 'io.openharmony.tpc.thirdlib:TheMVP:1.0.2' ``` ## 使用 可运行sample查看例子,主页面有五个button,分别对应五个场景使用,代码相当简单,易于上手。 ``` Copyright (C) 2015, 张涛 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```