# ProjectHelper **Repository Path**: alexpang/project-helper ## Basic Information - **Project Name**: ProjectHelper - **Description**: 自用的Mvvm基类库 - **Primary Language**: Android - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-12 - **Last Updated**: 2022-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ProjectHelper #### 介绍 自用的Mvvm基类库,用于快速构建项目,自己使用 #### 使用 apply plugin: 'kotlin-kapt' dependencies { implementation 'com.gitee.alexpang:project-helper:1.0.0' kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.8.3' } android { //想用哪个开哪个 buildFeatures { dataBinding = true viewBinding = true } } ## 初始化 MvvmHelper.init(this,BuildConfig.DEBUG) ### 混淆 -keepclassmembers class * implements androidx.viewbinding.ViewBinding { public static * inflate(android.view.LayoutInflater); public static * inflate(android.view.LayoutInflater, android.view.ViewGroup, boolean); public static * bind(android.view.View); }