955 lines
50 KiB
Groovy
955 lines
50 KiB
Groovy
apply plugin: 'com.android.application'
|
||
apply plugin: 'kotlin-android'
|
||
apply plugin: 'com.tencent.vasdolly'
|
||
apply from: '../project.gradle'
|
||
|
||
apply plugin: "com.bytedance.android.aabResGuard"
|
||
apply plugin: "xml-class-guard"
|
||
|
||
android {
|
||
compileSdkVersion COMPILE_SDK_VERSION.toInteger()
|
||
|
||
defaultConfig {
|
||
applicationId isolationMode ? 'com.e.oos' : 'com.hhchu.molistar'
|
||
minSdkVersion MIN_SDK_VERSION.toInteger()
|
||
targetSdkVersion TARGET_SDK_VERSION.toInteger()
|
||
versionCode Integer.valueOf(version_code)
|
||
versionName version_name
|
||
|
||
multiDexEnabled true
|
||
|
||
flavorDimensions 'default'
|
||
buildConfigField "boolean", "ISOLATION_MODE", "$isolationMode"
|
||
resConfigs "en", "zh-rTW", "ar"
|
||
if (isolationMode) {
|
||
resValue "string", "app_name", "Mo-debug"
|
||
} else {
|
||
resValue "string", "app_name", "Molistar"
|
||
}
|
||
}
|
||
|
||
splits {
|
||
abi {
|
||
enable true
|
||
reset()
|
||
include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
||
universalApk true
|
||
}
|
||
}
|
||
|
||
bundle {
|
||
language {
|
||
enableSplit = false
|
||
}
|
||
density {
|
||
enableSplit = true
|
||
}
|
||
abi {
|
||
enableSplit = true
|
||
}
|
||
}
|
||
|
||
//在apk文件后边生成版本号信息
|
||
android.applicationVariants.configureEach { variant ->
|
||
variant.outputs.configureEach { output ->
|
||
def date = new Date().format("MMddHHmm", TimeZone.getTimeZone("GMT+08"))
|
||
|
||
def outputFile = output.outputFile
|
||
if (outputFile == null || !outputFile.name.endsWith('.apk')) {
|
||
return
|
||
}
|
||
|
||
def abi = output.getFilter(com.android.build.OutputFile.ABI)
|
||
if (abi == null) {
|
||
abi = "universal"
|
||
}
|
||
outputFileName = "Molistar_${buildType.name}_v${defaultConfig.versionName}_${abi}_${date}.apk"
|
||
}
|
||
}
|
||
|
||
lint {
|
||
abortOnError false
|
||
disable 'MissingTranslation', 'ExtraTranslation', 'ContentDescription', 'SmallSp'
|
||
}
|
||
|
||
|
||
dataBinding {
|
||
enabled = true
|
||
}
|
||
|
||
viewBinding {
|
||
enabled = true
|
||
}
|
||
|
||
signingConfigs {
|
||
|
||
debug {
|
||
storeFile file('../molistar_debug.jks')
|
||
storePassword "molistar"
|
||
keyAlias "molistar"
|
||
keyPassword "molistar"
|
||
v2SigningEnabled true
|
||
v1SigningEnabled true
|
||
}
|
||
|
||
release {
|
||
storeFile file('../molistar.jks')
|
||
storePassword "molistar"
|
||
keyAlias "molistar"
|
||
keyPassword "molistar"
|
||
v2SigningEnabled true
|
||
v1SigningEnabled true
|
||
}
|
||
}
|
||
|
||
sourceSets {
|
||
|
||
main {
|
||
java.srcDirs = [
|
||
'src/main/java',
|
||
'src/module_labour_union/java',
|
||
'src/module_room_chat/java',
|
||
'src/model_customer_server/java',
|
||
'src/module_music/java',
|
||
'src/module_bank_card/java',
|
||
'src/module_super_admin/java',
|
||
'src/module_album/java',
|
||
|
||
]
|
||
|
||
res.srcDirs = [
|
||
'src/main/res',
|
||
'src/common/res',
|
||
'src/module_labour_union/res',
|
||
'src/module_room_chat/res',
|
||
'src/model_customer_server/res',
|
||
'src/module_music/res',
|
||
'src/module_bank_card/res',
|
||
'src/module_super_admin/res',
|
||
'src/module_album/res',
|
||
|
||
]
|
||
|
||
jniLibs.srcDirs = ['libs', 'aliyun-libs']
|
||
}
|
||
}
|
||
|
||
buildTypes {
|
||
def server_url_debug = '"http://beta.api.molistar.xyz/"'
|
||
def server_url_release = '"https://api.molistar.xyz/"'
|
||
|
||
debug {
|
||
println("minifyEnabled = " + minify_enabled)
|
||
|
||
buildConfigField "String", "BASE_URL", server_url_debug
|
||
buildConfigField "String", "BASE_URL_DEBUG", "BASE_URL"
|
||
buildConfigField "String", "BASE_URL_STAGING", "BASE_URL"
|
||
buildConfigField "String", "BASE_URL_RELEASE", server_url_release
|
||
minifyEnabled minify_enabled.toBoolean() // 是否混淆
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
crunchPngs false // 停用 PNG 压缩
|
||
signingConfig isolationMode ? signingConfigs.debug : signingConfigs.release
|
||
gradle.taskGraph.whenReady {
|
||
tasks.each { task ->
|
||
if (task.name.contains("Test") || task.name.contains("Lint")) {
|
||
task.enabled = false // 跳过 Test 和 Lint 相关的 Task
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
release {
|
||
ext.enableCrashlytics = CRASHLYTICS_COLLECTION_ENABLED.toBoolean()
|
||
ext.alwaysUpdateBuildId = CRASHLYTICS_COLLECTION_ENABLED.toBoolean()
|
||
|
||
buildConfigField "String", "BASE_URL", server_url_release
|
||
buildConfigField "String", "BASE_URL_DEBUG", "BASE_URL"
|
||
buildConfigField "String", "BASE_URL_STAGING", "BASE_URL"
|
||
buildConfigField "String", "BASE_URL_RELEASE", "BASE_URL"
|
||
minifyEnabled true // 是否混淆
|
||
shrinkResources true // 开了混淆的时候才能开启 是否去除无效的资源文件
|
||
zipAlignEnabled true // 开了混淆的时候才能开启 是否进行压缩并重排列
|
||
crunchPngs true // 启用 PNG 压缩
|
||
signingConfig isolationMode ? signingConfigs.debug : signingConfigs.release
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
}
|
||
}
|
||
|
||
compileOptions {
|
||
sourceCompatibility JavaVersion.VERSION_11
|
||
targetCompatibility JavaVersion.VERSION_11
|
||
}
|
||
|
||
kotlinOptions {
|
||
jvmTarget = '11'
|
||
}
|
||
|
||
buildToolsVersion = '30.0.3'
|
||
|
||
}
|
||
|
||
def Lombok = "1.18.24"
|
||
|
||
dependencies {
|
||
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||
implementation fileTree(dir: 'aliyun-libs', include: ['*.jar', '*.aar'])
|
||
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.2'
|
||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
|
||
|
||
api 'androidx.multidex:multidex:2.0.1'
|
||
|
||
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'
|
||
|
||
api "com.orhanobut:dialogplus:1.11@aar"
|
||
|
||
api "com.readystatesoftware.systembartint:systembartint:1.0.4"
|
||
api "com.rengwuxian.materialedittext:library:2.1.4"
|
||
api "com.github.flavienlaurent.datetimepicker:library:0.0.2"
|
||
|
||
api "com.darsh.multipleimageselect:multipleimageselect:1.0.4"
|
||
api "me.shaohui.advancedluban:library:1.3.5"
|
||
api "pl.droidsonroids.gif:android-gif-drawable:1.2.24"
|
||
api "com.makeramen:roundedimageview:2.3.0"
|
||
api "com.jzxiang.pickerview:TimePickerDialog:1.0.1"
|
||
api "com.github.zyyoona7:EasyPopup:1.0.2"
|
||
api "com.github.donkingliang:LabelsView:1.6.5"
|
||
api "com.github.yyued:SVGAPlayer-Android:2.6.1"
|
||
api "com.ms-square:expandableTextView:0.1.4"
|
||
annotationProcessor 'androidx.annotation:annotation:1.6.0'
|
||
|
||
implementation 'io.github.h07000223:flycoTabLayout:3.0.0'
|
||
|
||
api project(':core')
|
||
|
||
implementation 'com.github.qiujayen:sticky-layoutmanager:1.0.1'
|
||
|
||
implementation 'com.github.chenBingX:SuperTextView:v3.0.0'
|
||
|
||
//支付密码输入框
|
||
api 'com.jungly:gridPasswordView:0.3'
|
||
api 'com.google.android.flexbox:flexbox:3.0.0'
|
||
|
||
compileOnly "org.projectlombok:lombok:${Lombok}"
|
||
annotationProcessor "org.projectlombok:lombok:${Lombok}"
|
||
implementation 'nl.dionsegijn:konfetti:1.1.2'
|
||
|
||
//数字滚动效果
|
||
implementation 'com.github.YvesCheung:RollingText:1.2.3'
|
||
// 引入原有第三方裁图源码,方便修改
|
||
api project(':libs:lib_crop')
|
||
|
||
//rx权限请求框架
|
||
implementation('com.github.tbruyelle:rxpermissions:0.10.2') {
|
||
exclude group: 'io.reactivex.rxjava2'
|
||
}
|
||
//验证码控件 https://github.com/JingYeoh/VercodeEditText
|
||
implementation 'com.justkiddingbaby:vercodeedittext:1.1.0'
|
||
|
||
implementation 'it.sephiroth.android.library.imagezoom:library:1.0.4'
|
||
|
||
implementation 'com.github.fodroid:XRadioGroup:v1.5'
|
||
|
||
api 'com.tencent.vasdolly:helper:3.0.6'
|
||
implementation "io.github.tencent:vap:2.0.24"
|
||
|
||
implementation 'com.github.mmin18:realtimeblurview:1.2.1'
|
||
|
||
implementation 'com.github.zhpanvip:BannerViewPager:3.5.6'
|
||
|
||
implementation 'com.github.yalantis:ucrop:2.2.7'
|
||
|
||
implementation 'com.github.lihangleo2:ShadowLayout:3.3.2'
|
||
|
||
//wheelView
|
||
implementation 'com.contrarywind:wheelview:4.1.0'
|
||
|
||
|
||
implementation project(':modules:module_base')
|
||
if (!isolationMode && file("../modules/module_google/build.gradle").exists()) {
|
||
implementation project(':modules:module_google')
|
||
}
|
||
}
|
||
|
||
channel {
|
||
//多渠道包的输出目录,默认为new File(project.buildDir,"channel")
|
||
outputDir = new File(project.buildDir, "channelapk")
|
||
//多渠道包的命名规则,默认为:${appName}-${versionName}-${versionCode}-${flavorName}-${buildType}-${buildTime}
|
||
apkNameFormat = 'Molistar-${buildType}-${flavorName}-v${versionName}-${buildTime}'
|
||
//快速模式:生成渠道包时不进行校验(速度可以提升10倍以上,默认为false)
|
||
fastMode = false
|
||
//buildTime的时间格式,默认格式:yyyyMMdd-HHmmss
|
||
buildTimeDateFormat = 'MMddHHmm'
|
||
//低内存模式(仅针对V2签名,默认为false):只把签名块、中央目录和EOCD读取到内存,不把最大头的内容块读取到内存,在手机上合成APK时,可以使用该模式
|
||
lowMemory = false
|
||
}
|
||
|
||
aabResGuard {
|
||
mappingFile = file("aab-res-guard-mapping.txt").toPath() // Mapping file used for incremental obfuscation
|
||
whiteList = [ // White list rules
|
||
"*.R.raw.*",
|
||
"*.R.drawable.icon"
|
||
]
|
||
obfuscatedBundleFileName = "duplicated-app.aab" // Obfuscated file name, must end with '.aab'
|
||
mergeDuplicatedRes = true // Whether to allow the merge of duplicate resources
|
||
enableFilterFiles = false // Whether to allow filter files
|
||
filterList = [ // file filter rules
|
||
// "*/arm64-v8a/*",
|
||
// "META-INF/*"
|
||
]
|
||
|
||
enableFilterStrings = false // switch of filter strings
|
||
unusedStringPath = file("unused.txt").toPath() // strings will be filtered in this file
|
||
languageWhiteList = ["en", "zh"] // keep en,en-xx,zh,zh-xx etc. remove others.
|
||
}
|
||
|
||
//以下均为非必须
|
||
xmlClassGuard {
|
||
findAabConstraintReferencedIds = true
|
||
//用于增量混淆的 mapping 文件
|
||
mappingFile = file("xml-class-mapping.txt")
|
||
//更改manifest文件的package属性,即包名
|
||
packageChange = ["com.chwl.app": "com.hhchu.molistar",
|
||
"com.chwl.core": "com.hhchu.core",
|
||
"com.chwl.library": "com.hhchu.library"]
|
||
moveDir = [
|
||
"com.example.lib_utils.spannable" : "babdfb.baacfc",
|
||
"com.example.lib_utils.log" : "cade.bebee",
|
||
"com.example.lib_utils.ktx" : "aedbdf.cbfffd",
|
||
"com.example.lib_utils" : "edadfda.cbddcda",
|
||
"com.soundcloud.crop" : "eccbecc.eefdcbdd",
|
||
"com.example.lib_core.component" : "cebecef.abcfbdda",
|
||
"com.example.lib_core" : "ffedce.affffdf",
|
||
"com.chwl.library.luban" : "cdbffbd.eadcbca",
|
||
"com.chwl.library.easyphoto.utils.uri" : "dbbffdafc.aaadcdfcca",
|
||
"com.chwl.library.easyphoto.utils.system" : "adb.ffd",
|
||
"com.chwl.library.easyphoto.utils.string" : "bebbc.efcaca",
|
||
"com.chwl.library.easyphoto.utils.settings" : "defee.eaccbb",
|
||
"com.chwl.library.easyphoto.utils.result" : "eecdc.cddbfa",
|
||
"com.chwl.library.easyphoto.utils.permission" : "fea.fcef",
|
||
"com.chwl.library.easyphoto.utils.media" : "ddddcde.bfececea",
|
||
"com.chwl.library.easyphoto.utils.color" : "ddc.cacb",
|
||
"com.chwl.library.easyphoto.utils.bitmap" : "fadfc.bcaac",
|
||
"com.chwl.library.easyphoto.ui.widget" : "bfafdb.ffeeadd",
|
||
"com.chwl.library.easyphoto.ui.dialog" : "fbaaaf.cdadedd",
|
||
"com.chwl.library.easyphoto.ui.adapter" : "fcada.cbadea",
|
||
"com.chwl.library.easyphoto.ui" : "beefbfb.bffbefaf",
|
||
"com.chwl.library.easyphoto.setting" : "edfd.dbfda",
|
||
"com.chwl.library.easyphoto.result" : "fddd.dbae",
|
||
"com.chwl.library.easyphoto.models.sticker.view" : "bacccfc.abbadfec",
|
||
"com.chwl.library.easyphoto.models.sticker.listener" : "edecfbdbb.fbdcbfaaed",
|
||
"com.chwl.library.easyphoto.models.sticker.entity" : "bbfeef.fdaefba",
|
||
"com.chwl.library.easyphoto.models.sticker.cache" : "cfeefddf.daadadef",
|
||
"com.chwl.library.easyphoto.models.sticker" : "eadfab.aaffafa",
|
||
"com.chwl.library.easyphoto.models.puzzle.template.straight" : "cbbfdd.fdbaab",
|
||
"com.chwl.library.easyphoto.models.puzzle.template.slant" : "fcffbcef.cbefeefa",
|
||
"com.chwl.library.easyphoto.models.puzzle.straight" : "bbacbff.ecbddeb",
|
||
"com.chwl.library.easyphoto.models.puzzle.slant" : "ebbbf.bfcbc",
|
||
"com.chwl.library.easyphoto.models.puzzle" : "afbfbfd.dffbcec",
|
||
"com.chwl.library.easyphoto.models.album.entity" : "baf.edaf",
|
||
"com.chwl.library.easyphoto.models.album" : "daddbf.cebdcdd",
|
||
"com.chwl.library.easyphoto.models.ad" : "adecece.cdedecc",
|
||
"com.chwl.library.easyphoto.engine" : "ecadb.effbcc",
|
||
"com.chwl.library.easyphoto.constant" : "abcfbde.cefbdbb",
|
||
"com.chwl.library.easyphoto.callback" : "acbfefebc.aefecbfea",
|
||
"com.chwl.library.easyphoto.builder" : "cccbcd.fabeea",
|
||
"com.chwl.library.easyphoto" : "cebee.abfded",
|
||
"com.chwl.library.easypermisssion.helper" : "dcbcfd.abebba",
|
||
"com.chwl.library.easypermisssion" : "fdecdffb.cbddcdadd",
|
||
"com.chwl.library.common.widget" : "dbcccf.adbaeab",
|
||
"com.chwl.library.common.util" : "abadefdd.bbdedefbe",
|
||
"com.chwl.library.common.transform" : "ddecee.dbeafe",
|
||
"com.chwl.library.common.photo" : "bdbbad.cbbefbe",
|
||
"com.chwl.library.common.glide" : "faacc.afcba",
|
||
"com.chwl.library.common.fragmentation.windowcallback" : "bafbddf.cdcdbdb",
|
||
"com.chwl.library.common.fragmentation.queue" : "ffceba.caedfea",
|
||
"com.chwl.library.common.fragmentation.internal" : "fcfc.dceae",
|
||
"com.chwl.library.common.fragmentation" : "cafcfb.febddef",
|
||
"com.chwl.library.common.file" : "cdcdeb.ccfddae",
|
||
"com.chwl.library.common.entity" : "acdb.aacb",
|
||
"com.chwl.library.common.delegate" : "cbdf.beed",
|
||
"com.chwl.library.common.base" : "daebfd.bfaada",
|
||
"com.chwl.library.common.application" : "afdbd.ffcebb",
|
||
"com.chwl.library.common" : "fede.deddf",
|
||
"com.chwl.library.widget.xlist" : "ccbecd.ffdfcdb",
|
||
"com.chwl.library.widget.decoration" : "dacceb.bcfbca",
|
||
"com.chwl.library.widget" : "eacad.fcafd",
|
||
"com.chwl.library.utils.valid" : "eccee.fdbec",
|
||
"com.chwl.library.utils.pref" : "aaebaf.edefdcf",
|
||
"com.chwl.library.utils.net" : "aadbf.cfabd",
|
||
"com.chwl.library.utils.log" : "cdefbea.aedfceec",
|
||
"com.chwl.library.utils.keyboard" : "acbbf.ecdbcf",
|
||
"com.chwl.library.utils.json" : "cad.dcad",
|
||
"com.chwl.library.utils.image" : "ccdabf.fefcfbc",
|
||
"com.chwl.library.utils.file" : "cfe.bbdd",
|
||
"com.chwl.library.utils.constant" : "fcde.abaf",
|
||
"com.chwl.library.utils.config" : "edaaebed.afbeccda",
|
||
"com.chwl.library.utils.codec" : "ffbedacf.cadbdefa",
|
||
"com.chwl.library.utils.cache" : "beaeed.adcfbd",
|
||
"com.chwl.library.utils.asynctask" : "dacf.bbfea",
|
||
"com.chwl.library.utils.anim" : "dbcbbd.cbccefa",
|
||
"com.chwl.library.utils" : "fdeaee.fddfeca",
|
||
"com.chwl.library.threadmgr" : "eddebea.dcbdfbf",
|
||
"com.chwl.library.swipeactivity" : "eaacbeb.fddeacad",
|
||
"com.chwl.library.softinput" : "ecefea.cfddea",
|
||
"com.chwl.library.service" : "efdcc.dfcbe",
|
||
"com.chwl.library.rxbus" : "aefdcd.dbadbed",
|
||
"com.chwl.library.rx" : "eab.bee",
|
||
"com.chwl.library.record" : "dafcbfe.afcdffa",
|
||
"com.chwl.library.net.rxnet.utils" : "acfbbb.ceeeab",
|
||
"com.chwl.library.net.rxnet.model" : "cefdcae.ecabacf",
|
||
"com.chwl.library.net.rxnet.manager" : "fdccbc.fbdadfe",
|
||
"com.chwl.library.net.rxnet.interceptor" : "fcce.cbdf",
|
||
"com.chwl.library.net.rxnet.https" : "dcdca.eafdc",
|
||
"com.chwl.library.net.rxnet.factory" : "afbebbbdb.eafdafcbb",
|
||
"com.chwl.library.net.rxnet.exception" : "eeeab.bebfa",
|
||
"com.chwl.library.net.rxnet.converter" : "baaccbeb.efccaccde",
|
||
"com.chwl.library.net.rxnet.callback" : "dfad.eccaf",
|
||
"com.chwl.library.net.rxnet" : "facdef.bbedadd",
|
||
"com.chwl.library.manager" : "cbaf.aadf",
|
||
"com.chwl.library.list" : "bddaaa.ffeead",
|
||
"com.chwl.library.coremanager" : "aadcbecd.fedbababd",
|
||
"com.chwl.library.bindinglist" : "afabdcf.feacfbfb",
|
||
"com.chwl.library.base.factory" : "ddbfbdf.acbaddc",
|
||
"com.chwl.library.base" : "bfba.fcbd",
|
||
"com.chwl.library.annatation" : "bcfcaaa.cefecab",
|
||
"com.chwl.library.animator" : "acbc.afcdd",
|
||
"com.chwl.library.adapters" : "caffe.edbbcd",
|
||
"com.chwl.core.upgrade.model" : "cad.abdd",
|
||
"com.chwl.core.upgrade.event" : "fffdf.aaaccc",
|
||
"com.chwl.core.upgrade.bean" : "aea.baaf",
|
||
"com.chwl.core.super_admin.util" : "cacffea.cbcafbe",
|
||
"com.chwl.core.super_admin.model.exception" : "cabed.eeaede",
|
||
"com.chwl.core.super_admin.model" : "bdbd.affda",
|
||
"com.chwl.core.super_admin.bean" : "ddfb.edcab",
|
||
"com.chwl.core.super_admin.attachment" : "bfeea.cbedcb",
|
||
"com.chwl.core.super_admin" : "cddaaf.ddabfc",
|
||
"com.chwl.core.code" : "aeabedb.eebbdcaa",
|
||
"com.chwl.core.public_chat_hall.manager" : "cefdad.fefbeef",
|
||
"com.chwl.core.public_chat_hall.event" : "ccff.dfccf",
|
||
"com.chwl.core.public_chat_hall.bean" : "aeaaa.dedad",
|
||
"com.chwl.core.public_chat_hall.attachment" : "fedd.fadb",
|
||
"com.chwl.core.music.view" : "dafddd.eecfdad",
|
||
"com.chwl.core.music.model" : "ecabcfecb.bafeafaeb",
|
||
"com.chwl.core.music.event" : "dbbfcd.fcacbed",
|
||
"com.chwl.core.music.db.model" : "dcaac.ddecf",
|
||
"com.chwl.core.music.db.dao" : "fafafcea.fbfbbfda",
|
||
"com.chwl.core.music.db.converter" : "baf.fac",
|
||
"com.chwl.core.music.db.bean" : "acbfad.dcbefe",
|
||
"com.chwl.core.music.bean" : "deafc.bebac",
|
||
"com.chwl.core.miniworld.model" : "cdcbc.cfbbc",
|
||
"com.chwl.core.miniworld.event" : "babacc.becdde",
|
||
"com.chwl.core.miniworld.bean" : "ffbe.bdac",
|
||
"com.chwl.core.mentoring_relationship.view" : "aadffbfa.fedbaace",
|
||
"com.chwl.core.mentoring_relationship.model" : "dfdeb.baabec",
|
||
"com.chwl.core.mentoring_relationship.exception" : "beebbbe.debeffc",
|
||
"com.chwl.core.mentoring_relationship.event" : "fcaceace.afcfdceb",
|
||
"com.chwl.core.mentoring_relationship.bean" : "eaedcce.eebdfabf",
|
||
"com.chwl.core.mentoring_relationship.attachment" : "faebfdc.bcbbbbfc",
|
||
"com.chwl.core.module_hall.team.event" : "ebfdfe.fcefebd",
|
||
"com.chwl.core.module_hall.team.bean" : "edcbb.bcfca",
|
||
"com.chwl.core.module_hall.team" : "bbeafe.ffebdfa",
|
||
"com.chwl.core.module_hall.secretcode.bean" : "ffdab.eabbd",
|
||
"com.chwl.core.module_hall.secretcode" : "eedbec.ffbcbed",
|
||
"com.chwl.core.module_hall.income.event" : "bdecee.edfdbad",
|
||
"com.chwl.core.module_hall.income.bean" : "fcfc.debbb",
|
||
"com.chwl.core.module_hall.income" : "afdaaf.afcbfd",
|
||
"com.chwl.core.module_hall.im.bean" : "bfbcaedcbf.fddedfaafe",
|
||
"com.chwl.core.module_hall.im" : "fabf.dada",
|
||
"com.chwl.core.module_hall.hall.event" : "fdcc.edcba",
|
||
"com.chwl.core.module_hall.hall.bean" : "eacfafb.adbcafda",
|
||
"com.chwl.core.module_hall.hall" : "bfdade.fbabba",
|
||
"com.chwl.core.db" : "dccfb.bfeca",
|
||
"com.chwl.core.community.square" : "fbacff.ebfcca",
|
||
"com.chwl.core.community.im" : "ddfc.bbcdb",
|
||
"com.chwl.core.community.event" : "baaeac.edbfbcd",
|
||
"com.chwl.core.community.dynamic" : "abdce.bdebca",
|
||
"com.chwl.core.community.bean.comment" : "aedfcaaf.cdfbbcce",
|
||
"com.chwl.core.community.bean" : "bbcf.abac",
|
||
"com.chwl.core.community.attachment" : "ceebd.fefcbb",
|
||
"com.chwl.core.community" : "fcefbba.abbefae",
|
||
"com.chwl.core.channel_page.model" : "eed.bae",
|
||
"com.chwl.core.channel_page.bean" : "edfea.cddcb",
|
||
"com.chwl.core.bank_card.view" : "fbefdfd.fecfadeb",
|
||
"com.chwl.core.bank_card.model" : "afdeac.aecbbce",
|
||
"com.chwl.core.bank_card.exception" : "dccfcc.cbdaacd",
|
||
"com.chwl.core.bank_card.bean" : "ccaad.bddfa",
|
||
"com.chwl.core.withdraw.bean" : "aaffcba.daeefdac",
|
||
"com.chwl.core.web.event" : "ecefca.fecfafc",
|
||
"com.chwl.core.web.bean" : "cbcdae.acdabfe",
|
||
"com.chwl.core.vip.bean" : "eedbaeb.defbdfae",
|
||
"com.chwl.core.vip" : "bfcdb.eeabef",
|
||
"com.chwl.core.utils.net" : "dadebe.fbcfaa",
|
||
"com.chwl.core.utils.extension" : "aeef.afaa",
|
||
"com.chwl.core.utils" : "eafcbdd.abaeccf",
|
||
"com.chwl.core.user.event" : "ffbae.efabfb",
|
||
"com.chwl.core.user.bean" : "cfeddda.aafffbc",
|
||
"com.chwl.core.user" : "afacaed.bbaefab",
|
||
"com.chwl.core.treasurefairy.bean" : "eaffcdbc.daeffdba",
|
||
"com.chwl.core.treasurefairy" : "bcdefdc.efbefada",
|
||
"com.chwl.core.team.model" : "eefedae.dfccaca",
|
||
"com.chwl.core.team.bean" : "bfbdcd.fafefd",
|
||
"com.chwl.core.support.room.lifecycle.rx" : "defdaecac.ccedeecec",
|
||
"com.chwl.core.support.room.lifecycle" : "afcfafa.dffefaa",
|
||
"com.chwl.core.support.room" : "ddaddaf.fccabdf",
|
||
"com.chwl.core.support.config" : "cfacaac.feafadc",
|
||
"com.chwl.core.statistic.protocol" : "ccefcc.aecaac",
|
||
"com.chwl.core.statistic" : "dbdef.bfdea",
|
||
"com.chwl.core.sound.model" : "beffe.abfeac",
|
||
"com.chwl.core.skill.event" : "edaba.ddedb",
|
||
"com.chwl.core.skill.entity" : "bacfcf.dddbef",
|
||
"com.chwl.core.share.bean" : "aceac.ecabfe",
|
||
"com.chwl.core.settings.bean" : "cdccdab.ebdbacb",
|
||
"com.chwl.core.settings" : "adcfbfced.fadbfddca",
|
||
"com.chwl.core.set.model" : "efcb.ccac",
|
||
"com.chwl.core.set.bean" : "bababbc.cecaffca",
|
||
"com.chwl.core.room.treasure_box.event" : "fdccbea.eacbffe",
|
||
"com.chwl.core.room.treasure_box.bean" : "edbce.fdbbbc",
|
||
"com.chwl.core.room.recommendpos.bean" : "dfaabac.aabbefcc",
|
||
"com.chwl.core.room.recommendpos" : "ffbadbcda.dfdcbffdf",
|
||
"com.chwl.core.room.queuing_mic.event" : "abfbcbe.bceaabda",
|
||
"com.chwl.core.room.queuing_mic.bean" : "edccdc.abfbfcc",
|
||
"com.chwl.core.room.queuing_mic.attachment" : "eabbdce.ecdbefc",
|
||
"com.chwl.core.room.queue.bean" : "eebfd.aaccca",
|
||
"com.chwl.core.room.pk.model" : "acefeab.bddecfb",
|
||
"com.chwl.core.room.pk.event" : "fbbefcc.efafcfb",
|
||
"com.chwl.core.room.pk.bean.response" : "ecaed.eebace",
|
||
"com.chwl.core.room.pk.bean.request" : "cfeee.cdeea",
|
||
"com.chwl.core.room.pk.bean" : "afb.eaca",
|
||
"com.chwl.core.room.pk.attachment" : "cdd.cfde",
|
||
"com.chwl.core.room.model.inteface" : "bfcaceb.eaaeaae",
|
||
"com.chwl.core.room.model" : "bdefe.abaefa",
|
||
"com.chwl.core.room.giftvalue.helper" : "ffaaa.aceba",
|
||
"com.chwl.core.room.giftvalue.bean" : "bdebccd.fbfaecdb",
|
||
"com.chwl.core.room.giftvalue" : "caeb.acffa",
|
||
"com.chwl.core.room.game.bean" : "eacfafb.aadfdcee",
|
||
"com.chwl.core.room.game" : "acecfafb.cdacfdabe",
|
||
"com.chwl.core.room.face" : "cfcefbebdc.fecabacfcb",
|
||
"com.chwl.core.room.exception" : "baebbfcb.debebcfe",
|
||
"com.chwl.core.room.event" : "afdece.ecaeae",
|
||
"com.chwl.core.room.dragonball" : "adbbbaa.bcccfdf",
|
||
"com.chwl.core.room.core" : "efddaaf.aaabbfcd",
|
||
"com.chwl.core.room.bean" : "bceba.bbfce",
|
||
"com.chwl.core.room.auction.bean" : "fddadcc.fbdbaaa",
|
||
"com.chwl.core.room.auction" : "bacebdb.bceeffa",
|
||
"com.chwl.core.room.anotherroompk" : "edbcdb.efbadd",
|
||
"com.chwl.core.room.activitytimer" : "adabddff.ccfdcfbd",
|
||
"com.chwl.core.room" : "fcea.defb",
|
||
"com.chwl.core.retry" : "dbee.cafae",
|
||
"com.chwl.core.relation.cp.bean" : "bdabfb.aecccbc",
|
||
"com.chwl.core.relation.cp" : "caedeb.abacfbc",
|
||
"com.chwl.core.redpackage.bean" : "edbaad.bbdcdfc",
|
||
"com.chwl.core.redpackage" : "bcc.ffd",
|
||
"com.chwl.core.redPacket.event" : "efcdfd.fdfbcae",
|
||
"com.chwl.core.redPacket.bean" : "acdfe.ebeaed",
|
||
"com.chwl.core.redPacket" : "edfebe.eebcfad",
|
||
"com.chwl.core.recall.event" : "eebebe.eeeacfa",
|
||
"com.chwl.core.recall.bean" : "fabffdc.ffcdadbe",
|
||
"com.chwl.core.recall" : "cbdac.cadea",
|
||
"com.chwl.core.realm" : "bdbdef.cffbbf",
|
||
"com.chwl.core.radish.task.bean" : "abbefdab.daeaadad",
|
||
"com.chwl.core.radish.task" : "bbedaaf.fbdfcce",
|
||
"com.chwl.core.radish.signin.bean" : "def.cff",
|
||
"com.chwl.core.radish.signin" : "ecabbcaca.eddcdecfe",
|
||
"com.chwl.core.radish.event" : "cdfaedb.eecdebad",
|
||
"com.chwl.core.radish" : "fdbeeb.eddbbaf",
|
||
"com.chwl.core.praise.event" : "fdddf.ceacfd",
|
||
"com.chwl.core.praise" : "becbbbfc.beafebfff",
|
||
"com.chwl.core.pay.event" : "dbdfe.efdce",
|
||
"com.chwl.core.pay.bean" : "fbefaae.fddefebe",
|
||
"com.chwl.core.pay" : "eefbfb.ccdcdeb",
|
||
"com.chwl.core.patriarch.exception" : "bbcdfae.eddfdbfe",
|
||
"com.chwl.core.patriarch.event" : "eabff.eccdc",
|
||
"com.chwl.core.patriarch.bean" : "fbdfcae.fefbfee",
|
||
"com.chwl.core.noble.bean" : "dfefd.bacabc",
|
||
"com.chwl.core.noble" : "fdfb.adfec",
|
||
"com.chwl.core.newbie.event" : "facdeeb.fbeaaff",
|
||
"com.chwl.core.newbie.bean" : "ffedae.acfcdbb",
|
||
"com.chwl.core.msg.sysv2.bean" : "ddeeb.bdcdf",
|
||
"com.chwl.core.msg.sysv2" : "accaef.bfedba",
|
||
"com.chwl.core.msg.sys.bean" : "dcabc.bbdaea",
|
||
"com.chwl.core.msg.sys" : "ecdbfa.bedeee",
|
||
"com.chwl.core.msg" : "bafbfed.efeeebd",
|
||
"com.chwl.core.monsterhunting.rxevent" : "dfafbbe.afcbecce",
|
||
"com.chwl.core.monsterhunting.model" : "eabaaa.afcbcd",
|
||
"com.chwl.core.monsterhunting.manager" : "bdabaef.eaeccdc",
|
||
"com.chwl.core.monsterhunting.bean" : "adbaee.fffffc",
|
||
"com.chwl.core.monsterhunting" : "dddbd.cecfcf",
|
||
"com.chwl.core.market_verify.event" : "bedbcf.ffcdfb",
|
||
"com.chwl.core.market_verify.bean" : "fffba.cdbfee",
|
||
"com.chwl.core.market_verify" : "ecddaa.decfae",
|
||
"com.chwl.core.manager.trtc" : "cdffbe.cfbefa",
|
||
"com.chwl.core.manager.event" : "ebeccadeab.daaebfafbc",
|
||
"com.chwl.core.manager.agora" : "bdfbed.baaadfc",
|
||
"com.chwl.core.manager" : "eada.dedbf",
|
||
"com.chwl.core.magic.toolbox" : "feaabe.faacdb",
|
||
"com.chwl.core.magic.exception" : "bdc.dbdc",
|
||
"com.chwl.core.magic.bean" : "cbeee.efcdfb",
|
||
"com.chwl.core.magic" : "effdcba.daeaeedf",
|
||
"com.chwl.core.luckymoney.bean" : "cdaabd.cfabfca",
|
||
"com.chwl.core.linked.event" : "dccdeb.adfceff",
|
||
"com.chwl.core.linked.bean" : "dbeef.acefca",
|
||
"com.chwl.core.linked" : "dfcbeac.affedbe",
|
||
"com.chwl.core.level.event" : "ecbafad.dceddabe",
|
||
"com.chwl.core.level" : "eeaeecb.efdafbdc",
|
||
"com.chwl.core.kick" : "fccbdc.febfaf",
|
||
"com.chwl.core.interceptor" : "abeb.bdbf",
|
||
"com.chwl.core.initial.bean" : "edbabbab.acdccacc",
|
||
"com.chwl.core.initial" : "dfbcef.ddbeede",
|
||
"com.chwl.core.im.sysmsg" : "cdfe.ddaf",
|
||
"com.chwl.core.im.state" : "ddcefccc.baeddeeec",
|
||
"com.chwl.core.im.room" : "efafb.cccabc",
|
||
"com.chwl.core.im.notification" : "cbace.fedfba",
|
||
"com.chwl.core.im.login" : "febec.facfc",
|
||
"com.chwl.core.im.friend" : "ea.ea",
|
||
"com.chwl.core.im.custom.bean" : "dedfdbd.ebffbcba",
|
||
"com.chwl.core.im.custom" : "ccfbca.bcccebd",
|
||
"com.chwl.core.im.chatterbox.bean" : "dfdefbe.fedadcf",
|
||
"com.chwl.core.im.chatterbox" : "ffdffe.ccecbfc",
|
||
"com.chwl.core.im.avroom" : "bcafa.eadbc",
|
||
"com.chwl.core.im" : "dffa.ebaa",
|
||
"com.chwl.core.home.model" : "ffdbfa.ddcfcea",
|
||
"com.chwl.core.home.event" : "dfbbd.cefeaf",
|
||
"com.chwl.core.home.bean" : "accd.bbdff",
|
||
"com.chwl.core.home" : "bccfeaf.fbdedea",
|
||
"com.chwl.core.helper" : "fcddab.afabccd",
|
||
"com.chwl.core.gift.toolbox" : "bcbed.ffcdaf",
|
||
"com.chwl.core.gift.exception" : "beccc.cccee",
|
||
"com.chwl.core.gift.event" : "ccde.faea",
|
||
"com.chwl.core.gift.bean" : "ebbffdf.beebece",
|
||
"com.chwl.core.gift" : "dbbcc.dbceee",
|
||
"com.chwl.core.file" : "ccafedb.bddaadf",
|
||
"com.chwl.core.fansteam.bean" : "fcfdaa.edabfab",
|
||
"com.chwl.core.fansteam" : "adbfd.adeecd",
|
||
"com.chwl.core.family.model" : "bbcedbab.caaefbfb",
|
||
"com.chwl.core.family.event" : "efa.edde",
|
||
"com.chwl.core.family.bean.response.moneyManagement" : "afbba.abdcd",
|
||
"com.chwl.core.family.bean.response.memberList" : "dbcce.ecaeff",
|
||
"com.chwl.core.family.bean.response.familyPlaza" : "fbbcdb.ddfadba",
|
||
"com.chwl.core.family.bean.response" : "bbecb.daedaf",
|
||
"com.chwl.core.family.bean" : "cdade.adeda",
|
||
"com.chwl.core.exception" : "eeceaead.ceacebbe",
|
||
"com.chwl.core.earn.model" : "ffebb.edbcaf",
|
||
"com.chwl.core.earn.bean" : "bbcabbb.dcabfcd",
|
||
"com.chwl.core.decoration.nameplate.bean" : "cfadf.caddb",
|
||
"com.chwl.core.decoration.nameplate" : "cbddeb.bebdcc",
|
||
"com.chwl.core.decoration.headwear.throwable" : "bebcb.aefce",
|
||
"com.chwl.core.decoration.headwear.bean" : "bdbabbdc.ffafceeac",
|
||
"com.chwl.core.decoration.headwear" : "cbcebdb.bdebbebd",
|
||
"com.chwl.core.decoration.car.bean" : "ccbd.abca",
|
||
"com.chwl.core.decoration.car" : "ebdefd.befcae",
|
||
"com.chwl.core.decoration.bean" : "fbeebae.ebcadebe",
|
||
"com.chwl.core.decoration.backgroud.bean" : "aaecbd.bfafacd",
|
||
"com.chwl.core.decoration.backgroud" : "ecabbc.ccafec",
|
||
"com.chwl.core.decoration" : "babeeeb.ecbaceee",
|
||
"com.chwl.core.contacts" : "becea.cccca",
|
||
"com.chwl.core.community" : "fcefbba.abbefae",
|
||
"com.chwl.core.channel" : "ccb.fcf",
|
||
"com.chwl.core.certification.event" : "ceecd.bebccf",
|
||
"com.chwl.core.certification" : "fafbaf.febcecf",
|
||
"com.chwl.core.bills.result" : "defceb.bddedaa",
|
||
"com.chwl.core.bills.bean" : "fcef.caffe",
|
||
"com.chwl.core.bills" : "ebcfbec.defbbcbc",
|
||
"com.chwl.core.bean.response.result" : "decd.efffc",
|
||
"com.chwl.core.bean.response" : "cdfaac.caaeba",
|
||
"com.chwl.core.bean.attachmsg" : "fdab.dbaad",
|
||
"com.chwl.core.bean" : "dbcdb.edafab",
|
||
"com.chwl.core.base" : "eadbead.cefeacdf",
|
||
"com.chwl.core.auth.exception" : "bfcced.baedbeb",
|
||
"com.chwl.core.auth.event" : "ddcbacef.ebcaacba",
|
||
"com.chwl.core.auth.entity" : "cfeaf.ddccec",
|
||
"com.chwl.core.auth" : "debfc.deefa",
|
||
"com.chwl.core.audio.event" : "edfdda.fdabdf",
|
||
"com.chwl.core.audio.bean" : "feacbcff.edcaafbbb",
|
||
"com.chwl.core.audio" : "eeaca.ebabbb",
|
||
"com.chwl.core.association.model" : "eacfeca.adcbbfa",
|
||
"com.chwl.core.association.bean" : "ebdeaeb.dbccefdb",
|
||
"com.chwl.core.activity.model" : "debbcfdb.edbdfdeaf",
|
||
"com.chwl.core.activity.event" : "cfaafeb.ffdedef",
|
||
"com.chwl.core.activity.bean" : "feacdf.cefdbd",
|
||
"com.chwl.core" : "dddeaae.cfddfded",
|
||
"com.chwl.app.sadmin.utils" : "cccafa.feaeab",
|
||
"com.chwl.app.sadmin" : "accdab.baeeaee",
|
||
"com.chwl.app.room_chat.utils" : "ebdddaa.feeeabb",
|
||
"com.chwl.app.room_chat.fragment" : "afeccfe.dcfbfca",
|
||
"com.chwl.app.room_chat.event" : "cebb.fcbd",
|
||
"com.chwl.app.room_chat.adapter" : "baad.cfcfa",
|
||
"com.chwl.app.room_chat.activity" : "eaaadcc.ebdbede",
|
||
"com.chwl.app.room_chat" : "cdfaf.eceabb",
|
||
"com.chwl.app.music.widget" : "fadfedef.abeacebff",
|
||
"com.chwl.app.music.presenter" : "cdfa.baab",
|
||
"com.chwl.app.music.fragment" : "edfcdf.aabfdc",
|
||
"com.chwl.app.music.adapter" : "fadcdbbe.cebcdaae",
|
||
"com.chwl.app.music.activity" : "baddf.dbacfa",
|
||
"com.chwl.app.module_hall.viewmodel" : "fddae.dbafab",
|
||
"com.chwl.app.module_hall.team.view.widget" : "fecfabd.ffecdfb",
|
||
"com.chwl.app.module_hall.team.view" : "fead.fecfb",
|
||
"com.chwl.app.module_hall.team.presenter" : "edbfcf.eddebd",
|
||
"com.chwl.app.module_hall.team.adapter" : "dceeca.cabfcb",
|
||
"com.chwl.app.module_hall.team.activity" : "bdefdae.dbdbbbeb",
|
||
"com.chwl.app.module_hall.team" : "acfaacfd.aaddcbfed",
|
||
"com.chwl.app.module_hall.secretcode" : "eaafad.ebbdfca",
|
||
"com.chwl.app.module_hall.income.view" : "eefbddf.bebcebcf",
|
||
"com.chwl.app.module_hall.income.presenter" : "afbba.afcffb",
|
||
"com.chwl.app.module_hall.income.adapter" : "eabcac.bebbec",
|
||
"com.chwl.app.module_hall.income" : "acaede.cfecbe",
|
||
"com.chwl.app.module_hall.im.msgholder" : "decfc.acfca",
|
||
"com.chwl.app.module_hall.im.dialog" : "caca.dcdfa",
|
||
"com.chwl.app.module_hall.im" : "ebfceeb.dcaaedfe",
|
||
"com.chwl.app.module_hall.hall.view.indicator" : "bcdebe.cceeae",
|
||
"com.chwl.app.module_hall.hall.view.dialog" : "beffcef.ddaebdd",
|
||
"com.chwl.app.module_hall.hall.view" : "efbe.ccbe",
|
||
"com.chwl.app.module_hall.hall.presenter" : "bbebecb.bdacbefa",
|
||
"com.chwl.app.module_hall.hall.fragment" : "dffdae.dbaeadb",
|
||
"com.chwl.app.module_hall.hall.adapter" : "badadbfc.feddfdcae",
|
||
"com.chwl.app.module_hall.hall.activity" : "bdcdd.aaccc",
|
||
"com.chwl.app.module_hall" : "aedebf.dbedcab",
|
||
"com.chwl.app.bank_card.presenter" : "fcefbfa.bbabedeb",
|
||
"com.chwl.app.bank_card.adapter" : "ecdae.feffda",
|
||
"com.chwl.app.bank_card.activity" : "baaebb.adacabb",
|
||
"com.chwl.app.bank_card" : "afdfbbee.acccbcafe",
|
||
"com.example.matisse.widget" : "fafdc.ccdcea",
|
||
"com.example.matisse.ui" : "bddeecdf.daebcbca",
|
||
"com.example.matisse.listener" : "fdeec.edddcc",
|
||
"com.example.matisse.internal.utils" : "daadd.dccbda",
|
||
"com.example.matisse.internal.ui.widget" : "feebb.dcbfa",
|
||
"com.example.matisse.internal.ui.adapter" : "dcaaa.cabef",
|
||
"com.example.matisse.internal.ui" : "cabaff.aababab",
|
||
"com.example.matisse.internal.model" : "cdadc.cccccd",
|
||
"com.example.matisse.internal.loader" : "bcbcac.cfecdb",
|
||
"com.example.matisse.internal.entity" : "fecfdeeae.aefaabccf",
|
||
"com.example.matisse.filter" : "aabfe.eacfa",
|
||
"com.example.matisse.engine.impl" : "debe.ddbed",
|
||
"com.example.matisse.engine" : "bfcfa.aabec",
|
||
"com.example.matisse" : "badbf.fadfea",
|
||
"com.jph.takephoto.uitl" : "fbbaffa.faecdbe",
|
||
"com.jph.takephoto.permission" : "accbfce.fccdabb",
|
||
"com.jph.takephoto.model" : "afbfaa.afcdcd",
|
||
"com.jph.takephoto.compress" : "aecbcaf.acdbabae",
|
||
"com.jph.takephoto.app" : "edeebee.fefabfb",
|
||
"com.chwl.app.vip.view" : "ecad.baecf",
|
||
"com.chwl.app.vip.util" : "bcfe.ccaa",
|
||
"com.chwl.app.vip.dialog" : "cafded.caafcba",
|
||
"com.chwl.app.vip.bean" : "efbbc.adeda",
|
||
"com.chwl.app.vip.adapter" : "dceeffbc.eaffbcfd",
|
||
"com.chwl.app.vip" : "abaeec.bdedac",
|
||
"com.chwl.app.view.layoutmanager" : "fabcc.cffdbf",
|
||
"com.chwl.app.view" : "cabdb.accfda",
|
||
"com.chwl.app.utils" : "bcead.dfdbfb",
|
||
"com.chwl.app.ui.widget.viewpager" : "cbffcedc.ceeebada",
|
||
"com.chwl.app.ui.widget.rollviewpager.hintview" : "eedaced.ccaeddd",
|
||
"com.chwl.app.ui.widget.rollviewpager.adapter" : "bdeeebd.aaacacf",
|
||
"com.chwl.app.ui.widget.rollviewpager" : "ebffacb.ecccaaf",
|
||
"com.chwl.app.ui.widget.recyclerview.layoutmanager" : "faffb.bbcdba",
|
||
"com.chwl.app.ui.widget.recyclerview.decoration" : "afbbfef.dbebefb",
|
||
"com.chwl.app.ui.widget.password" : "cdbdc.cfcdde",
|
||
"com.chwl.app.ui.widget.marqueeview" : "fe.cff",
|
||
"com.chwl.app.ui.widget.magicindicator.ext" : "edcebdc.abcdfda",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator.titles.badge" : "aefeb.bfcdf",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator.titles" : "eacbbaf.edaceeb",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator.model" : "afcebbb.bcbbaba",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator.indicators" : "ddede.cbafa",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator.abs" : "aebeae.dcddcfc",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.commonnavigator" : "acab.aaea",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins.circlenavigator" : "acdcf.aecead",
|
||
"com.chwl.app.ui.widget.magicindicator.buildins" : "eaeaabd.ccbaeabc",
|
||
"com.chwl.app.ui.widget.magicindicator.abs" : "beeadefa.cffedbfa",
|
||
"com.chwl.app.ui.widget.magicindicator" : "deecdc.cefebd",
|
||
"com.chwl.app.ui.widget.interfacex" : "afef.cbfae",
|
||
"com.chwl.app.ui.widget.higuide" : "cfc.cefd",
|
||
"com.chwl.app.ui.widget.dynamicface" : "bacace.febaea",
|
||
"com.chwl.app.ui.widget.drawgift" : "cae.cbb",
|
||
"com.chwl.app.ui.widget.dialog" : "bccfaa.eeedea",
|
||
"com.chwl.app.ui.widget.bubble" : "fccea.caeaa",
|
||
"com.chwl.app.ui.widget.XRecyclerView" : "cff.dfb",
|
||
"com.chwl.app.ui.widget" : "efaded.babadae",
|
||
"com.chwl.app.ui.webview.room_banner" : "cada.eecbe",
|
||
"com.chwl.app.ui.webview.event" : "ffbbb.ceebbb",
|
||
"com.chwl.app.ui.webview" : "aaadff.eebecc",
|
||
"com.chwl.app.ui.wallet.adapter" : "deccfe.bcbbbe",
|
||
"com.chwl.app.ui.utils.sys" : "dfcdebe.adfefffe",
|
||
"com.chwl.app.ui.utils" : "dcbeeada.dfeedeab",
|
||
"com.chwl.app.ui.user.viewmodel" : "fafab.bedbf",
|
||
"com.chwl.app.ui.user.fragment" : "dcbf.bdefe",
|
||
"com.chwl.app.ui.user.event" : "feea.afda",
|
||
"com.chwl.app.ui.user.dialog" : "feeaaf.cdbbab",
|
||
"com.chwl.app.ui.user.decorationsend" : "abfbeaad.badffeebd",
|
||
"com.chwl.app.ui.user.adapter" : "bbdbd.acccbd",
|
||
"com.chwl.app.ui.user.activity" : "cbce.cfaac",
|
||
"com.chwl.app.ui.setting.viewmodel" : "bfafaedcc.fbdbadacae",
|
||
"com.chwl.app.ui.setting.bean" : "bccd.dddee",
|
||
"com.chwl.app.ui.setting.adapter" : "ffcaca.fbfaafc",
|
||
"com.chwl.app.ui.setting" : "ecaccbb.beccadff",
|
||
"com.chwl.app.ui.search.view" : "fdbeb.deffd",
|
||
"com.chwl.app.ui.search.presenter" : "adcae.bcfdca",
|
||
"com.chwl.app.ui.search.event" : "acfa.ffcb",
|
||
"com.chwl.app.ui.search" : "ddbffcaa.ffbccbbe",
|
||
"com.chwl.app.ui.relation.adapter" : "fdcecaf.eabaeaef",
|
||
"com.chwl.app.ui.relation" : "bedfeb.eeedcfb",
|
||
"com.chwl.app.ui.radish" : "ffbac.dfaec",
|
||
"com.chwl.app.ui.praise.base" : "eacffed.bfaeded",
|
||
"com.chwl.app.ui.praise" : "cdcbd.fbecf",
|
||
"com.chwl.app.ui.pay" : "eaddab.fdfdafb",
|
||
"com.chwl.app.ui.patriarch.help" : "dfcbd.cdcfcc",
|
||
"com.chwl.app.ui.patriarch" : "dfdeaddb.dbbdcaee",
|
||
"com.chwl.app.ui.login.ui" : "aaadcea.bdbfdaba",
|
||
"com.chwl.app.ui.login.helper" : "defefbb.cbfaccae",
|
||
"com.chwl.app.ui.login.fragment" : "dcfb.bfdce",
|
||
"com.chwl.app.ui.login" : "fbdb.abea",
|
||
"com.chwl.app.ui.list" : "afbeccf.eeadfbf",
|
||
"com.chwl.app.ui.keepalive" : "aabffd.fbaccfa",
|
||
"com.chwl.app.ui.indicator_impl" : "cead.ddea",
|
||
"com.chwl.app.ui.im.recent.holder" : "bdcb.eedb",
|
||
"com.chwl.app.ui.im.recent.adapter" : "eeefed.becfad",
|
||
"com.chwl.app.ui.im.recent" : "dfaebff.aabdecc",
|
||
"com.chwl.app.ui.im.model" : "cbafae.dbecfdc",
|
||
"com.chwl.app.ui.im.friend" : "dbecb.ccfcda",
|
||
"com.chwl.app.ui.im.fragment" : "fcfffef.cdaaffee",
|
||
"com.chwl.app.ui.im.chat" : "cddcabe.afbdedeb",
|
||
"com.chwl.app.ui.im.avtivity" : "bebec.afdec",
|
||
"com.chwl.app.ui.im.audio" : "accfdc.cdcbfac",
|
||
"com.chwl.app.ui.im.actions" : "feefed.becfccf",
|
||
"com.chwl.app.ui.im" : "beafbfbeb.dedfbbdbcb",
|
||
"com.chwl.app.ui.gift.widget" : "bfaeacf.aabcdbfa",
|
||
"com.chwl.app.ui.gift.util" : "deacecd.addbcee",
|
||
"com.chwl.app.ui.gift.gif" : "befcb.affcf",
|
||
"com.chwl.app.ui.gift.dialog" : "dccddf.bfcedeb",
|
||
"com.chwl.app.ui.gift.callback" : "dceed.febbe",
|
||
"com.chwl.app.ui.gift.adapter" : "eceedadb.dcfbbfdec",
|
||
"com.chwl.app.ui.behavior" : "ccdfda.debfad",
|
||
"com.chwl.app.ui.bean" : "faafdf.cefbbcb",
|
||
"com.chwl.app.ui.anim" : "bacee.daccf",
|
||
"com.chwl.app.ui.adapter" : "bdbce.adbdfc",
|
||
"com.chwl.app.team.viewmodel" : "bfeace.ffbefff",
|
||
"com.chwl.app.team.view" : "caead.eedace",
|
||
"com.chwl.app.team.event" : "cacdecf.ddebcbd",
|
||
"com.chwl.app.team.dialog" : "fdfcfc.aafcdc",
|
||
"com.chwl.app.team.bean" : "fcebb.eebee",
|
||
"com.chwl.app.team.adapter" : "bfddccfa.eadeaddae",
|
||
"com.chwl.app.sys" : "cbebab.dacbed",
|
||
"com.chwl.app.support" : "bdbeedc.fcdfcfa",
|
||
"com.chwl.app.star" : "bffcec.cebfbb",
|
||
"com.chwl.app.skill.widget" : "daeec.fdbbfb",
|
||
"com.chwl.app.skill.repository" : "bbcdaeca.dcfbfcfbe",
|
||
"com.chwl.app.skill.dialog" : "aedad.fefbab",
|
||
"com.chwl.app.skill.decoration" : "bbeee.feabad",
|
||
"com.chwl.app.skill.adapter" : "eeababfbe.accdfbdbd",
|
||
"com.chwl.app.skill.activity" : "ebceceb.facbeebc",
|
||
"com.chwl.app.skill" : "bfbacc.eabfde",
|
||
"com.chwl.app.share.viewholder" : "dcdaef.bbcdfa",
|
||
"com.chwl.app.share" : "bad.fabf",
|
||
"com.chwl.app.service" : "ddacadb.abafdaa",
|
||
"com.chwl.app.relation.extention" : "caedcc.deceffc",
|
||
"com.chwl.app.relation.cp.widget" : "cefecca.adfcdaf",
|
||
"com.chwl.app.relation.cp.viewmodel" : "bcabafedc.ccbfeeada",
|
||
"com.chwl.app.relation.cp.model" : "ccfafe.fbdbaec",
|
||
"com.chwl.app.relation.cp.fragment" : "bceb.dadfb",
|
||
"com.chwl.app.relation.cp.dialog" : "fbceea.cefbefb",
|
||
"com.chwl.app.relation.cp.adapter" : "abccbf.eaacbd",
|
||
"com.chwl.app.relation.cp.activity" : "efaeff.aececca",
|
||
"com.chwl.app.relation.cp" : "eabafed.efacabe",
|
||
"com.chwl.app.reciever" : "cca.cba",
|
||
"com.chwl.app.radish.widget" : "ffbea.aaddd",
|
||
"com.chwl.app.radish.wallet" : "efeedaeccc.cfcaeacafa",
|
||
"com.chwl.app.radish.view" : "becee.bcfeee",
|
||
"com.chwl.app.radish.task.view" : "faaee.afbce",
|
||
"com.chwl.app.radish.task.presenter" : "faedd.eecbcd",
|
||
"com.chwl.app.radish.task.fragment" : "abfacfbc.deefaddda",
|
||
"com.chwl.app.radish.task.adpter" : "bbdadbc.bcdcddbc",
|
||
"com.chwl.app.radish.task.activity" : "dceccff.aafdfebc",
|
||
"com.chwl.app.radish.presenter" : "acaecc.eaeddf",
|
||
"com.chwl.app.radish.helper" : "faaeb.fffedc",
|
||
"com.chwl.app.radish.adapter" : "fcfbbe.ddeecf",
|
||
"com.chwl.app.radish.activity" : "bdfffab.dffcdfbf",
|
||
"com.chwl.app.photo" : "eecccd.bfdbfcc",
|
||
"com.chwl.app.pay.view" : "eacfaa.fbeaac",
|
||
"com.chwl.app.pay.presenter" : "afceab.feabbff",
|
||
"com.chwl.app.other.view" : "ddacd.cdbfca",
|
||
"com.chwl.app.other.present" : "bbddcabe.bebbbdae",
|
||
"com.chwl.app.other.dialog" : "cedb.bdeeb",
|
||
"com.chwl.app.other.activity" : "e.ba",
|
||
"com.chwl.app.other" : "faedfe.fabffda",
|
||
"com.chwl.app.monsterhunting.bean" : "cedec.faddde",
|
||
"com.chwl.app.monsterhunting" : "fbabff.dbfeac",
|
||
"com.chwl.app.module" : "efdfeaf.efcddef",
|
||
"com.chwl.app.luckymoney.viewholder" : "dfedf.eedab",
|
||
"com.chwl.app.luckymoney.view" : "ddaddcd.caccbde",
|
||
"com.chwl.app.luckymoney.dialog" : "ffecde.ebbcfef",
|
||
"com.chwl.app.luckymoney.adapter" : "efeefc.eccdbf",
|
||
"com.chwl.app.home.widget" : "dfaafb.fcdcae",
|
||
"com.chwl.app.home.view" : "edfeb.efbcb",
|
||
"com.chwl.app.home.refresh" : "cfadbacde.cfaedfcccf",
|
||
"com.chwl.app.home.presenter" : "bdfece.fbefff",
|
||
"com.chwl.app.home.helper" : "fadcf.dfbdfa",
|
||
"com.chwl.app.home.fragment" : "beffafaea.aaccfbeab",
|
||
"com.chwl.app.home.event" : "aadff.cfbdd",
|
||
"com.chwl.app.home.dialog" : "bfbfb.ccacbc",
|
||
"com.chwl.app.home.adapter" : "dcaaa.bacefa",
|
||
"com.chwl.app.home.activity" : "cbafdaea.dabbbcef",
|
||
"com.chwl.app.home" : "facc.ffdec",
|
||
"com.chwl.app.guide" : "bafbbace.feffabda",
|
||
"com.chwl.app.friend.view" : "dabb.cedce",
|
||
"com.chwl.app.friend.action" : "deeead.dfedfad",
|
||
"com.chwl.app.friend" : "bfddd.dfdef",
|
||
"com.chwl.app.fansteam" : "eabdedaed.cfeadaacfe",
|
||
"com.chwl.app.event" : "bdff.bafcc",
|
||
"com.chwl.app.earn.adapter" : "dbddedf.cecfafa",
|
||
"com.chwl.app.earn.activity" : "aedee.bcdadb",
|
||
"com.chwl.app.earn" : "ffdbec.afddefd",
|
||
"com.chwl.app.decoration.viewmodel" : "dccaca.cbaaeea",
|
||
"com.chwl.app.decoration.view.widgets" : "dafde.edfde",
|
||
"com.chwl.app.decoration.view" : "affeefb.cddaaab",
|
||
"com.chwl.app.decoration.helper" : "bdbfa.aeccba",
|
||
"com.chwl.app.decoration.adapter" : "ebbd.edae",
|
||
"com.chwl.app.constants" : "ddeeea.cbabbd",
|
||
"com.chwl.app.common.widget.dialog" : "adbbdfcb.abacbeeb",
|
||
"com.chwl.app.common.widget" : "cdcbfd.cdcdaad",
|
||
"com.chwl.app.common.util" : "bcaabadbafe.cbdddabbbcfd",
|
||
"com.chwl.app.common.svga" : "dedde.effdb",
|
||
"com.chwl.app.common.server" : "abbadac.adcefdc",
|
||
"com.chwl.app.common.photo" : "bceefea.bcefcab",
|
||
"com.chwl.app.common.permission" : "acfda.dfeeab",
|
||
"com.chwl.app.common.dialog" : "deaeba.ffcaae",
|
||
"com.chwl.app.common.app" : "dbcedb.cccffe",
|
||
"com.chwl.app.common" : "cbaca.adadbb",
|
||
"com.chwl.app.bindadapter" : "bacefd.cdbedf",
|
||
"com.chwl.app.bills.widget" : "cdcfbd.fcadcaa",
|
||
"com.chwl.app.bills.view" : "cda.aedf",
|
||
"com.chwl.app.bills.presenter" : "bcbdbd.cfaccfd",
|
||
"com.chwl.app.bills.fragmemt" : "baffeb.dedcfc",
|
||
"com.chwl.app.bills.event" : "bdacea.effdae",
|
||
"com.chwl.app.bills.adapter" : "dffcceeb.cfbbbddde",
|
||
"com.chwl.app.bills.activities" : "ffaf.eadaa",
|
||
"com.chwl.app.base.list" : "dffcde.efbadaa",
|
||
"com.chwl.app.base" : "aedbb.fbfebd",
|
||
"com.chwl.app.avroom.widget" : "caeddfb.efcaeecd",
|
||
"com.chwl.app.avroom.view" : "bbaff.dbaabe",
|
||
"com.chwl.app.avroom.singleroompk" : "bbadb.dbabde",
|
||
"com.chwl.app.avroom.room_album" : "fffc.cdafe",
|
||
"com.chwl.app.avroom.recommendcard" : "aaefc.cffadd",
|
||
"com.chwl.app.avroom.rank" : "edadcb.beeaca",
|
||
"com.chwl.app.avroom.presenter" : "dddee.cfdea",
|
||
"com.chwl.app.avroom.newuserchargegift" : "bbfcc.bdbbb",
|
||
"com.chwl.app.avroom.helper" : "bcfbb.dffeae",
|
||
"com.chwl.app.avroom.giftvalue" : "acfcd.fbbcdd",
|
||
"com.chwl.app.avroom.fragment" : "beefbb.fbcafec",
|
||
"com.chwl.app.avroom.dialog" : "abbcea.ceadbc",
|
||
"com.chwl.app.avroom.core" : "fbebb.bdbebf",
|
||
"com.chwl.app.avroom.bean" : "affae.fcdff",
|
||
"com.chwl.app.avroom.anotherroompk" : "bbdba.edbbe",
|
||
"com.chwl.app.avroom.adapter" : "bffc.bbcd",
|
||
"com.chwl.app.avroom.activity" : "dccdfed.ccdfdde",
|
||
"com.chwl.app.avroom" : "bfedffaa.adfffbef",
|
||
"com.chwl.app.audio.widget" : "bfcafa.fbbfdb",
|
||
"com.chwl.app.audio.viewmodel" : "bdfe.bfccf",
|
||
"com.chwl.app.audio.view" : "abdfdcc.bbcaebb",
|
||
"com.chwl.app.audio.presenter" : "aeef.cbbaf",
|
||
"com.chwl.app.audio.helper" : "cfeb.ebade",
|
||
"com.chwl.app.audio.adapter" : "ddeceecf.dddcbccf",
|
||
"com.chwl.app.audio" : "cdedecf.fbddecef",
|
||
"com.chwl.app.application" : "cfd.ccae",
|
||
"com.chwl.app" : "cfdd.baac",
|
||
"com.chwl.app.ui.invite" : "cfdd.baac",
|
||
"com.chwl.app.ui.link" : "fdb.ddbd",
|
||
]
|
||
|
||
} |