• 00
  • :
  • 00
  • :
  • 00
摘要: Add this to you project-level build.gradle: buildscript { repositories { mavenCentral() } dependencies { classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' } } Add this to your module-level build.gradle: apply plugin: 'android-apt' android { ... } dependencies { compile 'com.jakewharton:butterknife:8.0.1' apt 'com.jakewharton:butterknife-compiler:8.0.1' } 阅读全文
posted @ 2016-06-14 09:41 Garson_Zhang 阅读(409) 评论(0) 推荐(0) 编辑