日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ButterKnife不同版本配置

發布時間:2025/3/21 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ButterKnife不同版本配置 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

7.0.1版本

compile 'com.jakewharton:butterknife:7.0.1'

8.0.1版本

module:

apply plugin: 'com.android.application' apply plugin: 'com.neenbedankt.android-apt'android {compileSdkVersion 23buildToolsVersion "23.0.3"dexOptions {javaMaxHeapSize "4g"preDexLibraries = false}defaultConfig {applicationId "com.example.administrator.myrecyclerview"minSdkVersion 15targetSdkVersion 23versionCode 1versionName "1.0"multiDexEnabled true}buildTypes {release {minifyEnabled falseproguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'}} }dependencies {compile fileTree(include: ['*.jar'], dir: 'libs')testCompile 'junit:junit:4.12'compile 'com.android.support:appcompat-v7:23.3.0'compile 'com.android.support:recyclerview-v7:23.3.0'//butterknifecompile 'com.jakewharton:butterknife:8.0.1'apt 'com.jakewharton:butterknife-compiler:8.0.1' }

?project

// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript {repositories {jcenter()}dependencies {classpath 'com.android.tools.build:gradle:2.1.0'classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files } }allprojects {repositories {jcenter()} }task clean(type: Delete) {delete rootProject.buildDir }

?8.5.1版本

module

apply plugin: 'com.android.library' apply plugin: 'com.jakewharton.butterknife'dependencies {compile 'com.jakewharton:butterknife:8.5.1'annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' }

project

buildscript {repositories {mavenCentral()}dependencies {classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'} }

?版本越高反而越復雜,是為了自由靈活考慮,不過真的好坑!

總結

以上是生活随笔為你收集整理的ButterKnife不同版本配置的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。