본문 바로가기

반응형
SMALL

AOS - Java

반응형
LIST
(11)

[안드로이드/Android] Build Gradle Error :: Support for this is available in Gradle 3.5 and all later versions. build 시 에러구문 The version of Gradle you are using (3.3) does not support the forTasks() method on BuildActionExecuter. Support for this is available in Gradle 3.5 and all later versions. ↓↓↓↓↓↓↓ [gradle-wrapper.properties] 수정distributionBase=GRADLE_USER_HOMEdistributionPath=wrapper/distszipStoreBase=GRADLE_USER_HOMEzipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributi..
[안드로이드/Android] Generate signed APK Error / apk 추출 error Android apk 추출 시 에러 build > Generate signed APK > 새로운 키를 생성 하면 실패 되었다는 메시지와 함께 나오는 문구 ………. there were duplicate class definitions …….. Butterknife 와 org.apache.poi.* 와 rx.internal.* 라이브러리 안에 있는 모든것이 can’t find 라는 오류와 함께 맨 밑에 Warning: there were 1341 unresolved references to classes or interfaces. You may need to add missing library jars or update their versions. If your code works fine without t..
[안드로이드/Android] RelativeLayout 속성 Relative Layout 속성 layout_above -> ~의 위에 배치layout_below -> ~의 밑에 배치layout_toLeftOf -> ~의 왼쪽에 배치layout_toRightOf -> ~의 오른쪽에 배치 layout_alignTop -> ~와 위쪽 변 맞추기layout_alignBottom -> ~와 밑쪽 변 맞추기layout_alignLeft -> ~와 왼쪽 변 맞추기layout_alignRight -> ~와 오른쪽 변 맞추기 layout_alignParentTop -> true이면 부모와 위쪽 변 맞추기layout_alignParentBottom -> true이면 부모와 아래쪽 변 맞추기layout_alignParentLeft -> true이면 부모와 왼쪽 변 맞추기layout_..