The activity must be exported or contain an intent-filter
The activity must be exported or contain an intent-filter 문제점 기존 activity가 있는 상태에서 동일 module에 activiry를 추가 생성 한 이후 실행 할 때 발생 해결방법 AndroidManifest.xml 파일에 intent-filter 정보를 추가하면 됨. 또는 신규 activity 생성 시 Launcher Activity 를 선택 하면 됨. ASIS TOBE 참조 관련링크 : stackoverflow
TroubleShooting
2017. 11. 22. 15:25
Entry fileTemplates//Singleton.java.ft not found
Entry fileTemplates//Singleton.java.ft not found 문제점 project 생성 시 kotlin 지원에 체크한 경우 오류 로그에 나오는 메시지 파일 템플릿을 찾지 못하는 것 안드로이드 Beta 버전의 버그라 하지만 현재(17.11.21) AndroidStudio 3.0.1 정식 버전에서도 발생 해결방법 C:\Program Files\Android\Android Studio\bin 폴더 아래 있는 studio.exe.vmoptions (32BIT 용) studio64.exe.vmoptions (64BIT 용) 위 파일에 -Djdk.util.zip.ensureTrailingSlash=false 정보를 추가한 이후 AndroidStudio 를 재가동 하면 됩니다. 참조 관련링..
TroubleShooting
2017. 11. 21. 10:17