views:

3929

answers:

2

Hi

I am looking for the source code of the android lock screen. It can be any version (1.5, 1.6, 2.0, etc)

Here is the link to the code: http://android.git.kernel.org/

I tried to look into the platform/frameworks/base.git but it looks like is not there. Maybe is closed source?

Thanks

Daniel

+4  A: 

Do an actual full checkout of the source according to Google's directions. Look in frameworks/policies/base/phone/com/android/internal/policy/impl for the files LockPatternKeyguardView.java and LockScreen.java (and their related resources and libraries).

Yoni Samlan
+4  A: 

What you're looking for is in platform/frameworks/policies/base Git repo in the phone/com/android/internal/policy/impl/LockScreen.java source. All the other related classes are available here.

fiXedd