模块独立开发
-
# 配置模块化的运行方式,singleModule=true表示每个模块都独立运行作为单独的apk,fasle标志作为module,被app模块依赖。 singleModule=true
-
//根据是否独立运行,将模块作为apk还是module if (singleModule.toBoolean()) { apply plugin: 'com.android.application' } else { apply plugin: 'com.android.library' }
-
android { //from dependencies.gradle defaultConfig{ //只有独立运行时候才需要applicationId if (singleModule.toBoolean()) { applicationId "com.cniao5.app.course" } } }
-
自己一个额外的activity,debug包和release包下面肯定是不一样的