728x90 gradle2 [안드로이드] More than one file was found with OS independent path ‘beans.xml’ 에러 1. 서론 안드로이드에서 앱 만들고 빌드하려고 하는데 More than one file was found with OS independent path ‘beans.xml’ 에러 발생 구글에서 에러 검색 결과 나온 블로그(eodevelop.tistory.com/46)를 참고하여 문제 해결 2. 본문 build.gradle (module) 에서 android 밑에 PackagingOptions 로 빌드할때 빼고 진행 3. 결론 정상적으로 빌드 완료 2021. 2. 24. [안드로이드] Gradle에 Maven Repository 추가 1. 서론 안드로이드에서 Upnp Control-Point만들어보려고 Java 라이브러리인 cling 을사용하려고 하는데, 메뉴얼에 Maven 방법밖에 없어, Gradle에서 사용해보려고 Repository 연동하려고 했음 2. 본문 build.gradle에 다음과 같이 설정하여 해결 allprojects { repositories { google() jcenter() maven{ url "http://4thline.org/m2" } } } ** 메뉴얼에 적혀있는 maven 설치 ** ** build.gradle(프로젝트 - app) - defendencies ** 3. 결론 일단 Gradle에 연결은 되었음. 확인해서 라이브러리 연동 진행 4. 맺음말 다양한 의견있으시면 알려주십시오. 2021. 2. 23. 이전 1 다음 728x90