implementation
dependency를 추가할 때 implementation을 사용하면 테스트 소스 세트를 포함한 모든 소스 세트에서 사용 할 수 있다.
testImplementation
dependency를 추가할 때 testImplementation을 사용하면 test source set에서만 사용할 수 있다.
androidTestImplementation
dependency를 추가할 때 androidTestImplementation을 사용하면 androidTest source set에서만 사용할 수 있다.
'archive' 카테고리의 다른 글
[Android Architecture] 데이터를 처리하는 Model (0) | 2020.07.05 |
---|---|
[flutter]안드로이드 버전코드, 버전이름 업그레이드 하기 (0) | 2020.06.28 |
[flutter]기본 위젯 DropDownButton (0) | 2020.06.07 |
[flutter]기본 위젯 Radio와 RadioListTile (0) | 2020.06.07 |
[flutter]기본 위젯 CheckBox, Switch (0) | 2020.06.07 |