제가 주로 구글 뮤직 플레이어를 이용하여 음악을 듣고 있습니다.

하지만 가끔 가사를 보고 싶을때가 있는데 이 플레이어는 가사를 지원하지 않아서 아쉽더라고요. 

그래서 구글 뮤직 플레이어를 연동하여 가사를 볼 수 있는 어플리케이션을 만들었습니다.


어플리케이션 다운 주소 : https://play.google.com/store/apps/details?id=com.vjcasters.lyrics















Posted by 행복한 개발자이고 싶다


android studio로 개발 중...

업데이트 후에 빌드가 안된다..


에러내용은.. "Local path doesn't exist."


구글 검색 시작....


검색 결과 : http://www.youtube.com/watch?v=i4WcMIyc8OQ&feature=youtu.be


해결 방법 요약

  1. 프로젝트 안에 있는 ****.iml 파일을 연다.

  2. <configuration> 항목 안에 아래 내요을 추가 한다.

  3. <option name="APK_PATH" value="/build/apk/****-debug-unaligned.apk" />




Posted by 행복한 개발자이고 싶다



예제 소스를 보고 있는데..


처음에는 에러가 없었다...

Graphical Layout 화면으로 갔다 오니까..



- 에러 생성 ㅠㅠ 오우 지쟈스~


- 뒤로가기로도 해결이 안된다.. 흠흠..

- 구글링들어간다.. 찾았다..

http://stackoverflow.com/questions/14916638/unexpected-namespace-prefix-xmlns-found-for-tag-linearlayout

In an Android xml file, the Android namespace can:

  • only be declared once
  • only be declared in the top ('outer') Android View in the xml hierarchy

or you'll receive an error when building the project. In your case, the top Android view is theScrollView, so keep

xmlns:android="http://schemas.android.com/apk/res/android"

in the ScrollView, and remove it from all other nested Views, including the LinearLayout.



- 중복이니 아래에 선언한걸 삭제하니 잘 된다.. 왜 복사한 파일은 그냥 된걸까? 


'개발 > 에러' 카테고리의 다른 글

Local path doesn't exist.  (0) 2013.10.29
R cannot be resolved to a variable.  (2) 2013.08.09
Theme.Appcompat.Light 리소스를 찾기 못함  (0) 2013.08.08
R.java 생성 안됨..  (0) 2013.08.08
Posted by 행복한 개발자이고 싶다