12345678910111213141516171819202122232425262728293031 |
- apply from: "../runing_default_config.gradle"
- //apply plugin: 'com.didiglobal.booster'
- android {
- defaultConfig {
- versionCode 100
- versionName "1.0.0"
- applicationId "com.hongyegroup.zhurijob"
- resConfigs('zh-rCN')
- ndk {
- //选择要添加的对应cpu类型的.so库。
- abiFilters 'armeabi-v7a', 'arm64-v8a'
- }
- }
- }
- dependencies {
- //依赖模块
- implementation project(':cs_cptServices')
- implementation project(':cpt_auth')
- implementation project(':cpt_main')
- implementation project(':cpt_parttime')
- implementation project(':cpt_ewallet')
- implementation project(':cpt_rewards')
- implementation project(':cpt_newsfeed')
- }
|