Android/Platform2011. 2. 10. 10:59

Error generating final archive: Debug certificate expired

어느날 갑자기 eclipse console에 위와 같이 "Debug certificate expired" 라는 문구가 뜬다면
사용하고 있던 debug.keystore 파일이 만료가 된 것이다. 파일 수명은 1년이다.

debug.keystore는 .android 폴더에 존재하고 있는데 다음과 같이 경로를 확인할 수 있다.
Eclipse - Window - Preferences



확인 하였으면 파일을 과감하게 삭제한다

파일을 삭제했는데도 왜 빌드가 안되냐..이러는 분들이 있는데,
eclipse의 Package Explore(workspace) 에 등록되어 있는 프로젝트들을 삭제하고 
다시 import를 하니 잘 되었다.

아래는 원문 참고..

Expiry of the Debug Certificate

The self-signed certificate used to sign your application in debug mode (the default on Eclipse/ADT and Ant builds) will have an expiration date of 365 days from its creation date.

When the certificate expires, you will get a build error. On Ant builds, the error looks like this:

debug:
[echo] Packaging bin/samples-debug.apk, and signing it with a debug key...
[exec] Debug Certificate expired on 8/4/08 3:43 PM

In Eclipse/ADT, you will see a similar error in the Android console.

To fix this problem, simply delete the debug.keystore file. The default storage location for AVDs is in ~/.android/ on OS X and Linux, in C:\Documents and Settings\\.android\ on Windows XP, and in C:\Users\\.android\ on Windows Vista.

The next time you build, the build tools will regenerate a new keystore and debug key.

Note that, if your development machine is using a non-Gregorian locale, the build tools may erroneously generate an already-expired debug certificate, so that you get an error when trying to compile your application. For workaround information, see the troubleshooting topic I can't compile my app because the build tools generated an expired debug certificate.



I can't compile my app because the build tools generated an expired debug certificate

If your development machine uses a locale that has a non-Gregorian calendar, you may encounter problems when first trying to compile and run your application. Specifically, you may find that the Android build tools won't compile your application because the debug key is expired.

The problem occurs because the Keytool utility — included in the JDK and used by the Android build tools — fails to properly handle non-Gregorian locales and may create validity dates that are in the past. That is, it may generate a debug key that is already expired, which results in the compile error.

If you encounter this problem, follow these steps to work around it:

  1. First, delete the debug keystore/key already generated by the Android build tools. Specifically, delete thedebug.keystore file. On Linux/Mac OSX, the file is stored in ~/.android. On Windows XP, the file is stored inC:\Documents and Settings\<user>\.android. On Windows Vista, the file is stored in C:\Users\<user>\.android
  2. Next, you can either
    • Temporarily change your development machine's locale (date and time) to one that uses a Gregorian calendar, for example, United States. Once the locale is changed, use the Android build tools to compile and install your app. The build tools will regenerate a new keystore and debug key with valid dates. Once the new debug key is generated, you can reset your development machine to the original locale.
    • Alternatively, if you do not want to change your machine's locale settings, you can generate the keystore/key on any machine using the Gregorian calendar, then copy the debug.keystore file from that computer to the proper location on your development machine.

This problem has been verified on Windows and may apply to other platforms.

For general information about signing Android applications, see Signing Your Applications.



-끝-
Posted by ekwang
Android/Platform2009. 12. 1. 12:07

11/30일자 platform/manifest.xml 을 받고 나서 빌드 완료 후
eclipse에서 project를 생성하려고 Mydroid/Development/ide/eclipse/.classpath를 이용하여 New java Project를 하니
아래와 같은 에러가 발생하였다.

An error occurred while creating project. Check log for details.

Reason:
Build path contains duplicate entry: 'frameworks/base/vpn/java' for project 'master'
An error occurred while creating project. Check log for details.

Reason:
Build path contains duplicate entry: 'out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/vpn/java' for project 'master'


본인만 발생하는 것인지 알 수는 없지만 해결 방법에 대해 알아보자.
Order and Export tab을 보면 아래와 같이 frameworks/base/vpn/java 가 2개가 포함이 되어 있다.
그리고 더 내려보면 out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/wifi/java 또한 2개가 포함되어 있다. 




아래 경로에 있는 .classpath파일을 열어서 중복되는 entry를 삭제한다.
~/android/master/development/ide/eclipse/.classpath

<classpathentry kind="src" path="frameworks/base/test-runner"/>
<classpathentry kind="src" path="frameworks/base/tts/java"/>
<classpathentry kind="src" path="frameworks/base/vpn/java"/>
<classpathentry kind="src" path="frameworks/base/wifi/java"/>
<classpathentry kind="src" path="frameworks/base/vpn/java"/> <-- 삭제
<classpathentry kind="src" path="frameworks/policies/base/phone"/>


<classpathentry kind="src" path="out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/telephony/java"/>
<classpathentry kind="src" path="out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/vpn/java"/>
<classpathentry kind="src" path="out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/wifi/java"/>
<classpathentry kind="src" path="out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/vpn/java"/> <-- 삭제

파일을 저장 후 .classpath 파일을 mydroid 폴더로 복사해서 다시 eclipse를 이용해서 project를 생성하면 에러 없이 잘 된다.

eclipse가 열려 있는 상태에서 이미 mydroid 폴더로 복사되어 있는 .classpath파일을 수정하면 파일이 원복이 되니
eclipse를 다고 .classpath는 수정 후 eclipse 다시 로딩하도록 한다.

위와 같이 duplicated entry 라는 에러가 뜰때는 .classpath파일에서 중복되는 entry를 삭제 하고 다시 project를 만들면된다.
Posted by ekwang
Android/Platform2009. 10. 16. 14:25

공식적으로 Android Platform 개발 환경으로는 Linux(Ubuntu)와 MAC OS를 언급하고 있다.
http://source.android.com/download

M$의 Window를 사용하고 있는 상태라면
Vvirtual Box등을 통해 ubuntu를 설치하거나, Linux, Window 를 멀티 부팅하게 하여
Android Platform 소스를 받고 컴파일을 하는 방법이 있을 것이다.(상위 링크 참고)

Android Code의 Distribute와 Contribute는 repo와 git라는 툴을 사용해서 한다.
git은 CVS, TortoiseSVN, ClearCase등과 같은 code를 관리하는 툴이라 생각하면 된다.
repo는 git기반으로 작성되었고 git의 많은 저장소들을 쉽게 관리할 수 있도록 도와주는 툴(스크립트)이다.
http://source.android.com/download/using-repo

그렇다.
window에서 git을 사용할 수 있다면 android platform 소스를 다운 받을 수 있는 것이다.
하지만 컴파일은 안된다.

우선 아래 링크를 참고하여 window에서 사용가능한 msysgit을 download하고 설치한다. (cygwin도 설치 해야함)
설치 시 옵션들이 잘 이해가 되지 않는다면
default 값들을 유지하면 Next만 눌러도 된다.

msysgit -
Git on Windows 개발 사이트
http://code.google.com/p/msysgit/

msysgit Download List

http://code.google.com/p/msysgit/downloads/list

설치가 완료되었으면 Git BashGit GUI를 확인 할 수 있다.

그럼 설치된 Git Bash를 실행해보자. terminal이 뜬다.

git을 이용하여 repository에서 소스를 내려 받는 기본 명령은 다음과 같다.

$ git clone git://android.git.kernel.org/platform/manifest.git mydroid


하지만 위와 같이 입력을 하게 되면 mydroid라는 폴더밑에는 default.xml 파일만 다운로드를 받고 작업이 완료된다.
원래 Linux 환경에서는 repo sync 를 이용하면
default.xml 파일을 참고하여서 전체 platform source를 다운을 받게 되는 것이다.
(실제 msysgit에서 curl을 통해서 repo를 설치하고 repo sync를 실행하여 다운로드를 시도해 봤으니
여러가지 에러가 발생하였다.)

하지만 우린 repo를 사용하지 않을 것인데,
그렇다면 160여개가 넘는project 파일들을 어떻게 다 다운 받을 것인가?
아래와 같이 일일이 입력 해줘야 한다!!!

git clone git://android.git.kernel.org/kernel/lk.git
git clone git://android.git.kernel.org/kernel/omap.git
git clone git://android.git.kernel.org/kernel/experimental.git
git clone git://android.git.kernel.org/kernel/msm.git
git clone git://android.git.kernel.org/kernel/common.git
.....

다행히 이러한 작업을 간단히 스크립트로 만들어 둔 분이 계시다.
http://bradchow.wordpress.com/2009/01/20/get-android-source-code-in-m-windows/

Download File :


해당 사이트에서 가져온 스크립트 첨부파일을 다운 받은 다음
아래와 같이 git bash에서 실행을 하게 되면 android full source를 다운 받을 수 있다.

$ sh autogit.sh


총 5.5G 정도의 디스크 공간이 필요하다.
필요한 소스만 받고 싶다면
http://android.git.kernel.org/
사이트를 참고하여서 원하는 project만 다운로드를 받아도 된다.

Posted by ekwang
Android/Platform2009. 9. 24. 11:58
바로 앞 포스팅에 이어, Eclipse에서 Android Platform Build가 끝난 상태에서
Eclipse와 emulator를 연결하여 debuging을 하려다가 다시 문제에 봉착했다.
원인을 알고 나면 부끄러워지게 된다.


http://source.android.com/using-eclipse 를 참고하여 진행한다.

터미널에서 아래와 같이 입력하여 emulator를 실행 시키고,
~$ cd /path/to/android/root
~$ . build/envsetup.sh
~$ lunch 1   # to build the emulator
~$ make      # if you didn't already do this
~$ emulator  # you should see a GUI picture of a phone


다시 다른 터미널을 열어서 아래와 같이 입력하여 DDMS를 실행한다.
~$ cd /path/to/android/root
~$ ddms      # you should get a splufty debugging console

그리고 나서 eclipse의 debug를 연결시키면 되는데..

1. Run > Open Debug Dialog...
2. Right-click "Remote Java Application", select "New".
3. Pick a name, "android-debug" or anything you like.
4. Set the "Project" to your project ("android-java" or whatever).
5. Keep the "Host" set to "localhost", but change "Port" to 8700.
6. Click the "Debug" button and you should be all set.


위와 똑같이 진행하였지만
Eclipse에서는 아래와 같은 error popup이 발생하였다.

Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDMS or of the eclipse plugin running. If it's being used by something else, choose a new port number in the preferences.

'Launching android' has encountered a problem. Failed to connect to remote VM



http://source.android.com/using-eclipse 를 상세히 읽어 보니,
아래 내용을 지나쳣다!

Note that port 8700 is attached to whatever process is currently selected in the DDMS console, so you need to sure that DDMS has selected the process you want to debug.

port 8700은 DDMS console에서 현재 선택된 process와 연결이 되기 때문에 디버그 하고자하는 process를 DDMS에서 확실히 선택해야 한다.

그렇다. 아래 이미지와 같이 원하는 process를 선택하게 되면
포트옆에 8700 port가 연결이 된다.


다시 Eclipse에서 Debug 를 실행 해보면 eclipse - ddms - emulator 가 연결되어 정상적으로
디버깅이 됨을 알 수 있다.

process가 debug상태가 되면 녹색 벌레가 출현한다.





http://developer.android.com/guide/developing/tools/ddms.html
위 사이트에 있는 DDMS의 기동에 대한 간단한 설명이다.

  1. DDMS 시작 시 adb server, client가 연결되고 둘간의 device monitoring service가 시작된다. device가 연결되거나 끊어질 경우 DDMS에게 알려준다.
  2. device가 연결되면 target의 adb와 DDMS간에 VM monitoring service가 생성된다. 그 후 디바이스의 VM(process)가 종료되거나 시작되면 DDMS에 알려준다.
  3. VM이 구동 되면, DDMS는 adb를 통해서 VM pocess의 pid 값을 검색한 후 디바이스의 adb daemon을 통해서 VM의 debugger와 연결 한다.
  4. DDMS는 custom wire protocol을 이용해서 target의 VM(process)과 통신할 수 있다.
  5. device의 각 VM을 위해서 DDMS는 디버거와 연결할 port를 연다.
  6. 첫번째 VM을 위해서 DDMS는 8600번 포트를 통해 debugger를 연결한다. 다음은 8601..
  7. debugger(eclipse)가 이 중 한 port와 연결이 되면 그 VM의 정보들을 받을 수 있게 된다.
  8. DDMS는 base port인 8700 local port를 연다. 8700port가 일반적으로 debugger가 연결이 되어야 하는 port임.

DDMS는 adb(android debug bridge) daemon, adb client, adb server를 사용하여 돌아가는 server, client 를 이용한다.
그리고 emulator에서 실행되는 모든 application들은 하나의 process(각 process는 각자 하나의 dalvik VM을 포함함)를 가지게 되는데, DDMS가 emulator나 real target device와 연결을 하게 되면
target으로 부터 각 process의 정보를 받아오고 adb를 통해 각각에 port(process port 8600~)를 할당해준다.

위와 같이 정상적으로 연결된 상태라면 DDMS에서 하나의 process를 선택하게 되면 default Debug VM port인 8700번으로 선택한 Process port forwarding 을 하게 되어 외부(Eclipse)에서 DDMS를 통해서 원하는 Process를 debug 할 수 있게 되는 것이다.

※잘못된 정보에 대해서는 가차없는 지적 바랍니다.

Posted by ekwang
Android/Platform2009. 9. 23. 18:01
Android Platform 소스를 빌드하고 디버깅 하기 위해서는
http://source.android.com/using-eclipse 사이트를 참고하여 진행하면 된다.

하지만, Eclipse에서 .classpath파일을 이용하여 New Project를 생성을 하고,
Build를 하게 되면 거의 300개에 육박하는 Error가 발생하는 것을 보게된다.

대략 아래와 같은 에러들이 발생하게 되는데..

CertTool cannot be resolved     LoadListener.java       Android_Source/
frameworks/base/core/java/android/webkit        line 1002       Java Problem

CONNECTED cannot be resolved    VpnSettings.java        Android_Source/packages/
apps/Settings/src/com/android/settings/vpn      line 605        Java Problem

DISCONNECTING cannot be resolved        VpnSettings.java        Android_Source/
packages/apps/Settings/src/com/android/settings/vpn     line 608        Java
Problem

IVpnService cannot be resolved  AuthenticationActor.java        Android_Source/
packages/apps/Settings/src/com/android/settings/vpn     line 153        Java
Problem

Keystore cannot be resolved     SecuritySettings.java   Android_Source/
packages/apps/Settings/src/com/android/settings line 905        Java Problem

Keystore cannot be resolved to a type   SecuritySettings.java
Android_Source/packages/apps/Settings/src/com/android/settings  line
487     Java Problem

L2TP cannot be resolved VpnSettings.java        Android_Source/packages/apps/
Settings/src/com/android/settings/vpn   line 541        Java Problem

L2tpIpsecProfile cannot be resolved to a type   L2tpIpsecEditor.java
Android_Source/packages/apps/Settings/src/com/android/settings/vpn
line 69 Java Problem

The import android.net.vpn cannot be resolved   AuthenticationActor.java
Android_Source/packages/apps/Settings/src/com/android/settings/vpn
line 28 Java Problem

.....

하나 하나 해결해 보도록 하자.

우선 아래 이미지와 같이 New Project를 만들때 vpn Package를 Source 에 추가하도록 한다.



Project의 생성이 완료되면 (Build Automatically가 설정되어 있으면 빌드를 중지시키자)
Eclipse에서 project의 Java Build Path를 약간 수정해보자

Project의 Root 를 선택 후 Properties(Alt+Enter) 설정 창을 띄운다.
아래 이미지와 같이 Java Build Path를 선택 한 다음 Source 탭에서
Add Folder... 를 선택 하면 Source Folder Selection 창이 뜨게 된다.

android1.6/frameworks/base/keystore/Java
android1.6/frameworks/base/vpn/Java
두 경로의 Java폴더를 체크하여 추가 해주어야 한다.
위의 파일들이 제대로 import되지 않아서 많은 error가 발생하고 있다.



이렇게 설정을 마치고 Build All을 하면, 우선 90% Error가 사라지게 된다. :)

그럼 계속하여 아래와 같이 남아 있는 Error들을 정리 해보자.
R.java 파일이 없어서 발생하는 문제임을 알 수 있다.

R cannot be resolved    LandingPage.java    android/packages/providers/ImProvider/src/com/android/providers/im    line 141    Java Problem

R cannot be resolved    ProviderListItem.java    android/packages/providers/ImProvider/src/com/android/providers/im    line 64    Java Problem

.....

Package Explore를 통해서
out/target/common/R을 살펴보면
com.android.providers.im 의 Package와 그에 속하는 R.java 파일을 찾을 수가 없다.
android 1.6에서는 ImProvider 를 build 하지 않도록 make 파일이 막혀 있기 때문이다.

위의 Error를 해결 할 방법은 두가지 이다.
Eclipse에서 ImProvider를 build 하지 않거나, ImProvider의 android.mk 파일을 수정하여 제대로 build를 해주는 것이다.

ImProvider를 Eclipse에서 Build하지 않는 방법은 간단하다.
1. packages/providers/ImProvider/src 를 선택 후 마우스 Right Click
2. Build Path -> Configure Inclusion / Exclusion Filters....
를 선택하면 아래 이미지와 같은 창이 뜬다.
3. Exclustion Pattern의   Add.. 를 선택하여 com/android/providers/im을 추가 하게 되면 해당 package는 빌드가 되지 않는다.


다시 Build All(Ctrl+B)를 해보자.
모든 Error 없이 빌드가 완료 됨을 볼 수 있다.


ImProvider를 꼭 써야겠다.. 한다면 위에서 설명한 ImProvider를 Exclusion하는 작업은 하지 말자.
android1.6/packages/providers/ImProviders/Android.mk 파일을 수정하여 다시 make를 하면된다.
ifeq (1,1)  //<----- (0,1) 을 (1,1)로 수정함

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := user

LOCAL_SRC_FILES :=  $(call all-java-files-under,src)

LOCAL_JAVA_LIBRARIES := ext \
                        com.android.im.plugin           # TODO: remove this and load this on demand.
                                                        # (HACK: include this so we can load the
                                                        # classes defined in this plugin package)

LOCAL_PACKAGE_NAME := ImProvider
LOCAL_CERTIFICATE := vendor/google/certs/app

include $(BUILD_PACKAGE)

# additionally, build sub-tests in a separate .apk
include $(call all-makefiles-under,$(LOCAL_PATH))

endif # ifeq (0,1)

위와 같이 파일을 수정 후 다시 make를 한다.
ekwang@ekwang-desktop-ubuntu-vmware:~/android/android1.6$ make
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=1.6
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=Donut
============================================
build/core/copy_headers.mk:15: 경고: 타겟 `out/target/product/generic/obj/include/libpv/getactualaacconfig.h'에 대한 명령어보다 다른 것이 우선합니다
build/core/copy_headers.mk:15: 경고: 타겟 `out/target/product/generic/obj/include/libpv/getactualaacconfig.h'에 대한 과거 명령어들을 무시합니다
Install: out/target/product/generic/system/app/Mms.apk
target Java: ImProviderPermissionTests (out/target/common/obj/APPS/ImProviderPermissionTests_intermediates/classes)
target R.java/Manifest.java: ImProvider (out/target/common/obj/APPS/ImProvider_intermediates/src/R.stamp)
target Java: ImProvider (out/target/common/obj/APPS/ImProvider_intermediates/classes)
Note: packages/providers/ImProvider/src/com/android/providers/im/ImProvider.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
ekwang@ekwang-desktop-ubuntu-vmware:~/android/android1.6$

android1.6/out/target/common/R/com/android/providers/im 폴더에
Manifest.java
R.java
파일이 생성되어 있음을 확인 할 수 있다.

위와 같이 생성한 파일들을 Eclipse Build path에 추가 해야 한다.
Package Explore에서 out/target/common/R 를 선택 후 마우스 Right Click 하여
Build Path -> Configure Inclusion / Exclusion Filters....를 실행 하면 아래와 같은 화면을 볼 수 있다.
Exclusion에 포함되어 있는 com/android/im을 Remove 해줘야 한다.



그다음,
Package Explore에서 out/target/common/R 를 선택 후 마우스 Right Click 하여
New -> Package 를 선택하여  com.android.providers.im 을 추가한다.
아래와 같이 R.java, Manifest.java 파일이 보이지 않는다면 Refresh(F5) 를 해보도록 한다.



다시 Build All 을 하면 깨끗이 빌드가 완료 된다.

사실 위의 과정은 이미 잘못(?) 생성되어 있는 Android project 빌드시 발생하는 error를 해결하는 과정이다.
하지만 android1.6/packages/providers/ImProviders/Android.mk 파일을 수정하여 다시 make를 미리 해둔 상태에서
New Project를 생성한다면 R.com.android.providers.im은 자동으로 추가가 되기 때문에
위의 과정을 진행 할 필요가 없어진다.

추가(10/16) : Android development group의 내용을 뒤지다 보니 위의 ImProviders를 build하는 것 보다 아예 Build에서 빼버리는 것이 좋다고 한다. 참고 하시길..

이제 Android Platform 을 Eclipse를 이용하여 마음껏 디버깅 하기만 하면된다.
그런데 무엇을 디버깅 하지..? ㅠㅠ
Posted by ekwang
Android/Platform2009. 9. 19. 15:38
얼마전 Android SDK 1.6 이 Release 되었다.
뒤늦게 upgrade를 하고 Eclipse에서 Emulator를 구동하니 아래와 같은 두가지 문제가 발생하였다.
해결 방법을 알아보자.





Eclipse 에서 Run 동작 시 Console에 아래와 같은 에러 발생함.
An internal error occurred during: "Launching Android Test".
com.android.ddmlib.AndroidDebugBridge.getDevices()[Lcom/android/ddmlib/IDevice;


해결책 :
아래 이미지와 같이 ADT, DDMS의 버젼이 최신인 0.9.3을 유지하고 있는지 확인해야 한다.
위와 같은 에러가 발생할 경우 DDMS의 버젼이 0.9.1로 남아 있을 경우가 있다.
DDMS를 다시 update하여 0.9.3을 다운 받은 후 Run을 하면 위의 에러가 발생하지 않는다.








Eclipse 에서 Run 동작 시 Console에 아래와 같은 에러 발생함.
Emulator]emulator: ERROR: bad config: virtual device directory lacks config.ini
Emulator]emulator: could not find virtual device named 'avd_1_6
'

해결책 :
1. 이미 AVD를 생성한 경우 move 해주는 방법
window에서 로그인 계정이 한글일 경우( AVD 경로에 한글이 포함된 경우, 한글이름 계정 ),
SDK 1.6에서 AVD 생성 후 emulator 를 동작 할때 AVD를 찾지 못해서 위와 같은 에러가 발생할 수 있다.

AVD를 생성 할때 기본설정에 따라
C:\Documents and Settings\한글계정\.android\avd 에 AVD가 생성 된다.
> android move -n avd_1_6 -p c:\avd\avd_1_6

와 같은 식으로 AVD를 한글 path가 없는 곳으로 이동 하면 정상적으로 emulator가 구동 된다.

또는 애초에 avd를 create할때 부터 -p 옵션을 이용해서 default path가 아닌 영문으로 된 곳으로 지정을 해주면 된다.

2. 새로운 AVD를 생성하는 방법

아래와 같이 avd를 한글이 포함되지 않은 경로에 avd를 생성한다. (android SDK 2.0, 2.0 이하의 경우 -t 3 이하로..)
> android create avd -n avd_2_0 -p c:\avd\avd_2_0 -t 4

SDK에서 제공하는 여러 Tool들을 consol(terminal)에서 다루는 방법을 익혀둔다면 개발에 유용할 것이다.
Posted by ekwang