본문 바로가기

IT/Error

(12)
안드로이드 스튜디오 / Gradle sync failed: Unable to start the daemon process. Error:Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an unrecognized jvm option is used. Please refer to the user guide chapter on the daemon at https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html Please read the following process output to find out more: ----------------------- Error occurred during initialization ..
안드로이드 스튜디오 / Firebase Could not deserialize object 에러 ~~~ does not define a no-rgument constructor. If you are using ProGuard, make sure these constructors are not stripped. 해당 오류는 Firebase의 객체를 역직렬화 하려면 DTO 클래스에 빈 생성자가 필요해서 발생한 것이다. 따라서, DTO클래스의 멤버 변수에 default 값을 주는 것으로 해결 가능하다. data class User ( val email : String = "", val name : String ="", val image : String = "", val uid : String = "" ) 객체 데이터 초기화해주기~
안드로이드 스튜디오 / ScrollView can host only one direct child 오류 해결 Caused by: android.view.InflateException: Binary XML file line #38: ScrollView can host only one direct child Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child Scrollview는 하나의 Child만 가질 수 있다. 따라서 View가 여러개라면 (ex. Recyclerview, Linearlayout 등) LinearLayout 같은 Layout으로 한 번 더 감싸주어야 한다.
E/ Plugin with id 'com.google.gms.google-services' not found. firebase를 gradle에 추가하고싶은데 못하고 있는 상황 발생.. 예제에는 apply plugin: 'com.google.gms.google-services' 하라고 했으나, 내 코드는 plugins{} 이렇게 되어 있는 상황. plugins{ id 'com.google.gms.google-services' } 해보니 Plugin with id 'com.google.gms.google-services' not found. 에러가 떴다. plugins { id 'com.google.gms.google-services' version '4.3.2' } 다음과 같이 뒤에 version을 명시해주니 해결 ㅎㅎ; https://github.com/google/play-services-plugins/tree..

반응형