[关闭]
@PheonixHkbxoic 2017-05-04T08:49:05.000000Z 字数 582 阅读 744

Android 工具/库 引用

Android


1. Butterknife 引入

Gradle build Project dependencies中添加classpath

  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5. dependencies {
  6. classpath 'com.android.tools.build:gradle:2.2.2'
  7. // NOTE: Do not place your application dependencies here; they belong
  8. // in the individual module build.gradle files
  9. // 添加butterknife使用插件
  10. classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'
  11. }
  12. }

Gradle build module

  1. /* 使用butterknife插件 */
  2. //apply plugin: 'com.android.library'
  3. apply plugin: 'com.jakewharton.butterknife'
  4. /* butterknife */
  5. compile 'com.jakewharton:butterknife:8.5.1'
  6. annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注