# Estate **Repository Path**: mercy_lo/Estate ## Basic Information - **Project Name**: Estate - **Description**: 智慧物业 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2018-08-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Estate #### 项目介绍 智慧物业功能模块 #### 软件架构 config/dependencies.gradle #### 使用说明 1. 配置项目 参考demo app build.gradle 2. 拷贝 libs 文件夹下 aar包 3. 主项目Application继承EstateApplication 并实现 PayConfig接口(微信支付) ``` public class SimpleApplication extends EstateApplication implements PayConfig { @Override public String getWxAppid() { return "23423423423"; } @Override public String getPwdAction() { return null; } } ``` 4. 启动模块主界面,传入context,memberId ``` EstateMainActivity.start(MainActivity.this, "2"); ```