728x90
반응형

정말 간단하지만 RN에서 꼭 필요한 lib중에 한 4,5년전쯤에 나온 라이브러리들이 있다.

해당 library들은 readMe 에보면 compile .. 등으로 dependcies에 가져온다.

compile, runtime, testCompile, testRuntime 은 Gradle 4.10 (2018.8.27) 이후로 deprecate 되었다.
그리고 Gradle 7.0 (2021.4.9) 부터 삭제되었다.

 

예전 라이브러리들의 

compile -> implementation

runtime -> runtimeOnly

testCompile -> testImplementation

testRuntime -> testRuntimeOnly

 

등으로 수정해주면 된다.

728x90
반응형

+ Recent posts