-
Notifications
You must be signed in to change notification settings - Fork 1.5k
宿主调试
cundong edited this page Feb 24, 2018
·
8 revisions
本文来讲述如何“利用神奇的host-gradle”来实现插件的快速安装、快速调试等。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.qihoo360.replugin:replugin-host-gradle:2.2.4'
}
}
(这个apply plugin尽量放在android配置之后吧,因为可以自动读取android中的配置项,方便以后升级。简单的说,就是放在你build.gradle文件末尾即可)
apply plugin: 'replugin-host-gradle'
// If use AppCompat, open the useAppCompat repluginHostConfig { useAppCompat = true }
生成内置插件的配置文件(一般很少使用,编译时会自动处理)
生成插件们的坑位配置文件(一般很少使用,编译时会自动处理)
查看所有内置插件的信息