Gradle 5

com.jakewharton:butterknife:8.4.0 @BindView 에러

JakeWharton/butterknife ButterKnife Homepate http://gun0912.tistory.com/2 com.jakewharton:butterknife:8.4.0 @BindView 에러 dependencies { compile 'com.jakewharton:butterknife:8.4.0' compile 'com.jakewharton:butterknife-compiler:8.4.0' // compile을 같이 등록해야 한다. // compile 'com.jakewharton:butterknife-annotations:8.4.0' // compile 'com.jakewharton:butterknife-gradle-plugin:8.4.0' } import butterknife...

ide/androidstudio 2016.12.22

Gradle Android

Gradle 철저입문 9안드로이드 프로젝트 적용 Android Plugin for Gradle Release Notes File > Project Structure... > Flavors Tap > defaultConfig // **** 오타가 있을 수 있으니 참고만 할것 ***** // 안드로이드 플러그인을 사용하기 위한 설정 buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.2' // 버전을 고정하지 않는 설정을 권장한다. gradle.2.2.+ // 하지만 2.2+ Android Studio 에서는 2.2.2로 자동 생성된다. // 책에서도 고정해서 사용하길 권장한다...

ide/androidstudio 2016.12.01

Gradle 환경구성

Gradle 철저입문 7장 의존관계 관리 # build.gradle # 환경구성 configurations { conf1 } // 변경성 모듈: 의존관계 모듈은 계속 바뀌는 경우가 있다. // 특수한 모듈을 사용할 경우 그레이들은 해당 버전을 해결한 결과를 24시간 캐시한다. // 아래는 캐시 기간을 설정한다. configurations.conf1.resolutionStrategy.cacheDynamicVersionsFor 1, 'minutes' // conf1 환경 동적 버전 캐시 간격 configurations.conf1.resolutionStrategy.cacheChangingMoulesFor 5, 'hours' // conf1 변경성 모듈 캐시 간격 // 의존관계 정의 dependencies { ..

lang 2016.11.30
반응형