SlideShare a Scribd company logo
Guide for
Wakelock
detector 1.5.*
UzumApps Copyright 2013
What is wakelock?
Wakelock is the Android feature which can
be used by apps to override deep sleep and
control power management of device:
● Keep CPU awake (at high frequency)
● Turn on the screen
● Keep the screen on
Like in any other portable device when there is no User Interaction,
the device enters into deep sleep mode, in which it uses the minimum
power to prolong battery life.
Usually, before entering into deep sleep mode:
○ First screen dims
○ Then screen turns off
○ Finally, CPU switches to the lowest frequency (sleeps)
Why wakelock is bad?
● Wakelock enables apps to do tasks transparently in the
background, without user's awareness. Which might
waste battery power, network data and other resources.
● Apps can switch on the screen without user's intention.
This can be quite annoying for the users.
● Buggy apps; Whenever the wakelock is acquired, it
must be released, otherwise it can cause sleepless
(insomniac) phone. The phone's CPU keeps running or
the screen won't turn off
Who benefits from
WakeLock Detector(WLD)?
● People who suffer from extreme battery drain, even
when they are not using phone (this is caused by CPU
wakelocks)
● People who are annoyed by random Screen wake-ups
(this one is caused by screen-wakelocks)
● People who don’t know which app is keeping their
screen on continuously (this one caused by unreleased
wakelocks)
Technical Knowledge:
Wakelock Types in Android System
Android PowerManager supports 4 kind of wakelocks
for developers, which are used in acquire/release method :
Wakelock Type CPU Screen Keyboard
PARTIAL_WAKE_LOCK On* Off Off
SCREEN_DIM_WAKE_LOCK On Dim Off
SCREEN_BRIGHT_WAKE_LOCK On Bright Off
FULL_WAKE_LOCK On Bright Bright
Note:
○ PARTIAL_WAKE_LOCK must be released by developer after acquiring, otherwise it
causes sleepless mode
○ Other wakelock types(screen related wakelocks) are released automatically when
the user presses Power Button
○ By using ACQUIRE_CAUSES_WAKE_UP flag developers can turn on the screen
while acquiring one of above wakelock types
Wakelock types in WLD
To simplify the types of wakelocks “Wakelock detector”
combines them into 2 types:
● CPU wakelocks
○ PARTIAL_WAKE_LOCK
● Screen wakelocks
○ SCREEN_DIM_WAKELOCK
○ SCREEN_BRIGHT_WAKELOCK
○ FULL_WAKELOCK
What is “Wakeup triggers”
In Android, there is a feature called “AlarmManager”
which can be used by other apps to schedule periodic tasks
(e.g: Facebook schedules a task that checks for new
events every 5 minutes).
This causes the phone to wake-up from its deep sleep
mode for certain period of time.
“Wakeup triggers” shows those apps which triggered the
periodic tasks. It shows the exact amount of how many times the
phone has been awaken by the app. By reducing these wakeups
the battery life will be prolonged significantly (e.g: Reduce
update(refresh) rate of Weather widgets..)
Since when wakelock statistics
in WLD is shown
The Battery management service of Android resets
(nullifies) accumulated battery statistics (including wakelock
statistics) in two cases:
● while rebooting phone
● when the phone is unplugged with battery level above
90%
In Wakelock detector you can see statistics either since
the time when it was reset or since the time when you
unplugged the cable.
If you choose “since unplug” then you have shorter
duration but more sophisticated wakelock statistics shown.
Fin
Thank you!
Download Wakelock Detector at
Before sleep
Sunday night:
50% should be
enough until
tomorrow
morning ZZZ
however..next
morning...
Motivations for WLD
Motivations for WLD
4:00 AM
zzzz
screen
turns on..
Ads
Some new
message?

More Related Content

What's hot

Android crash debugging
Android crash debuggingAndroid crash debugging
Android crash debugging
Ashish Agrawal
 
Android Automotive
Android AutomotiveAndroid Automotive
Android Automotive
Opersys inc.
 
Project meeting: Android Graphics Architecture Overview
Project meeting: Android Graphics Architecture OverviewProject meeting: Android Graphics Architecture Overview
Project meeting: Android Graphics Architecture Overview
Yu-Hsin Hung
 
Android ppt
Android pptAndroid ppt
Android ppt
Ansh Singh
 
Building aosp
Building aospBuilding aosp
Building aosp
gvercoutere
 
Android is NOT just 'Java on Linux'
Android is NOT just 'Java on Linux'Android is NOT just 'Java on Linux'
Android is NOT just 'Java on Linux'
Tetsuyuki Kobayashi
 
Android Platform Architecture
Android Platform ArchitectureAndroid Platform Architecture
Android Platform Architecture
Naresh Chintalcheru
 
Introduction to Skia by Ryan Chou @20141008
Introduction to Skia by Ryan Chou @20141008Introduction to Skia by Ryan Chou @20141008
Introduction to Skia by Ryan Chou @20141008
Ryan Chou
 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
Nanik Tolaram
 
Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)
Emertxe Information Technologies Pvt Ltd
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device Driver
Nanik Tolaram
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
Opersys inc.
 
Android Internals
Android InternalsAndroid Internals
Android Internals
Opersys inc.
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System Server
Opersys inc.
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
Emertxe Information Technologies Pvt Ltd
 
Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013
Opersys inc.
 
Android studio
Android studioAndroid studio
Android studio
Paresh Mayani
 
Android Internals
Android InternalsAndroid Internals
Android Internals
Opersys inc.
 
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...Opersys inc.
 

What's hot (20)

Android crash debugging
Android crash debuggingAndroid crash debugging
Android crash debugging
 
Android Automotive
Android AutomotiveAndroid Automotive
Android Automotive
 
Project meeting: Android Graphics Architecture Overview
Project meeting: Android Graphics Architecture OverviewProject meeting: Android Graphics Architecture Overview
Project meeting: Android Graphics Architecture Overview
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Building aosp
Building aospBuilding aosp
Building aosp
 
Android is NOT just 'Java on Linux'
Android is NOT just 'Java on Linux'Android is NOT just 'Java on Linux'
Android is NOT just 'Java on Linux'
 
Android Platform Architecture
Android Platform ArchitectureAndroid Platform Architecture
Android Platform Architecture
 
Introduction to Skia by Ryan Chou @20141008
Introduction to Skia by Ryan Chou @20141008Introduction to Skia by Ryan Chou @20141008
Introduction to Skia by Ryan Chou @20141008
 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
 
Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device Driver
 
Android Presentation
Android PresentationAndroid Presentation
Android Presentation
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
 
Android Internals
Android InternalsAndroid Internals
Android Internals
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System Server
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
 
Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013
 
Android studio
Android studioAndroid studio
Android studio
 
Android Internals
Android InternalsAndroid Internals
Android Internals
 
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
 

Similar to Android - Wakelock detector

Manual neocoolcam door sensor
Manual neocoolcam door sensorManual neocoolcam door sensor
Manual neocoolcam door sensor
Domotica daVinci
 
Alcatel Onetouch Pixi 8 Manual / User Guide
Alcatel Onetouch Pixi 8 Manual / User GuideAlcatel Onetouch Pixi 8 Manual / User Guide
Alcatel Onetouch Pixi 8 Manual / User Guide
manualsheet
 
Launch X431 EasyDiag User Manual
Launch X431 EasyDiag User ManualLaunch X431 EasyDiag User Manual
Launch X431 EasyDiag User Manual
Tim Miller
 
How to use Launch EasyDiag for IOS Android
How to use Launch EasyDiag for IOS Android How to use Launch EasyDiag for IOS Android
How to use Launch EasyDiag for IOS Android
BuyobdtoolShop
 
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
Domotica daVinci
 
LG G5 T-Mobile Manual / User Guide (English)
LG G5 T-Mobile  Manual  / User Guide (English)LG G5 T-Mobile  Manual  / User Guide (English)
LG G5 T-Mobile Manual / User Guide (English)
manualsheet
 
Alcatel Onetouch Evo 7 Manual / User Guide
Alcatel Onetouch Evo 7 Manual / User GuideAlcatel Onetouch Evo 7 Manual / User Guide
Alcatel Onetouch Evo 7 Manual / User Guide
manualsheet
 
Fujitsu LIFEBOOK S752 Getting Started Guide
Fujitsu LIFEBOOK S752 Getting Started GuideFujitsu LIFEBOOK S752 Getting Started Guide
Fujitsu LIFEBOOK S752 Getting Started Guide
manualsheet
 
The Lenovo Ideapad 100s user guide manual PDF (English)
The Lenovo Ideapad 100s user guide manual PDF (English)The Lenovo Ideapad 100s user guide manual PDF (English)
The Lenovo Ideapad 100s user guide manual PDF (English)
manualsheet
 
Pt lg-phoenix3
Pt lg-phoenix3Pt lg-phoenix3
Pt lg-phoenix3
Hugo Loja
 
What’s new in android o
What’s new in android oWhat’s new in android o
What’s new in android o
Ahmed Nabil
 
aseel kutan.pptx
aseel kutan.pptxaseel kutan.pptx
aseel kutan.pptx
FREDYJoy2
 
Qubino luxy smart light - Z-Wave Plus Manual
Qubino luxy smart light - Z-Wave Plus ManualQubino luxy smart light - Z-Wave Plus Manual
Qubino luxy smart light - Z-Wave Plus Manual
Domotica daVinci
 
Moto g 4
Moto g 4Moto g 4
Moto g 4
mec17
 
Win power manual
Win power manualWin power manual
Win power manual
fhashimy sfnh
 
Mini price on off z wave plus everspring
Mini price on  off z wave plus everspringMini price on  off z wave plus everspring
Mini price on off z wave plus everspring
Domotica daVinci
 
Samsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User GuideSamsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User Guide
manualsheet
 
Samsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User GuideSamsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User Guide
manualsheet
 
Manual sensor temperature and humidity z-wave plus - philio
Manual sensor temperature and humidity   z-wave plus - philioManual sensor temperature and humidity   z-wave plus - philio
Manual sensor temperature and humidity z-wave plus - philio
Domotica daVinci
 

Similar to Android - Wakelock detector (20)

Power management android
Power management androidPower management android
Power management android
 
Manual neocoolcam door sensor
Manual neocoolcam door sensorManual neocoolcam door sensor
Manual neocoolcam door sensor
 
Alcatel Onetouch Pixi 8 Manual / User Guide
Alcatel Onetouch Pixi 8 Manual / User GuideAlcatel Onetouch Pixi 8 Manual / User Guide
Alcatel Onetouch Pixi 8 Manual / User Guide
 
Launch X431 EasyDiag User Manual
Launch X431 EasyDiag User ManualLaunch X431 EasyDiag User Manual
Launch X431 EasyDiag User Manual
 
How to use Launch EasyDiag for IOS Android
How to use Launch EasyDiag for IOS Android How to use Launch EasyDiag for IOS Android
How to use Launch EasyDiag for IOS Android
 
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
Ph pat02 - zipato flood multisensor 3 in 1 user manual v1.0
 
LG G5 T-Mobile Manual / User Guide (English)
LG G5 T-Mobile  Manual  / User Guide (English)LG G5 T-Mobile  Manual  / User Guide (English)
LG G5 T-Mobile Manual / User Guide (English)
 
Alcatel Onetouch Evo 7 Manual / User Guide
Alcatel Onetouch Evo 7 Manual / User GuideAlcatel Onetouch Evo 7 Manual / User Guide
Alcatel Onetouch Evo 7 Manual / User Guide
 
Fujitsu LIFEBOOK S752 Getting Started Guide
Fujitsu LIFEBOOK S752 Getting Started GuideFujitsu LIFEBOOK S752 Getting Started Guide
Fujitsu LIFEBOOK S752 Getting Started Guide
 
The Lenovo Ideapad 100s user guide manual PDF (English)
The Lenovo Ideapad 100s user guide manual PDF (English)The Lenovo Ideapad 100s user guide manual PDF (English)
The Lenovo Ideapad 100s user guide manual PDF (English)
 
Pt lg-phoenix3
Pt lg-phoenix3Pt lg-phoenix3
Pt lg-phoenix3
 
What’s new in android o
What’s new in android oWhat’s new in android o
What’s new in android o
 
aseel kutan.pptx
aseel kutan.pptxaseel kutan.pptx
aseel kutan.pptx
 
Qubino luxy smart light - Z-Wave Plus Manual
Qubino luxy smart light - Z-Wave Plus ManualQubino luxy smart light - Z-Wave Plus Manual
Qubino luxy smart light - Z-Wave Plus Manual
 
Moto g 4
Moto g 4Moto g 4
Moto g 4
 
Win power manual
Win power manualWin power manual
Win power manual
 
Mini price on off z wave plus everspring
Mini price on  off z wave plus everspringMini price on  off z wave plus everspring
Mini price on off z wave plus everspring
 
Samsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User GuideSamsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User Guide
 
Samsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User GuideSamsung Galaxy S7 edge Manual / User Guide
Samsung Galaxy S7 edge Manual / User Guide
 
Manual sensor temperature and humidity z-wave plus - philio
Manual sensor temperature and humidity   z-wave plus - philioManual sensor temperature and humidity   z-wave plus - philio
Manual sensor temperature and humidity z-wave plus - philio
 

Recently uploaded

Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
goswamiyash170123
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
DhatriParmar
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 

Recently uploaded (20)

Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 

Android - Wakelock detector

  • 2. What is wakelock? Wakelock is the Android feature which can be used by apps to override deep sleep and control power management of device: ● Keep CPU awake (at high frequency) ● Turn on the screen ● Keep the screen on Like in any other portable device when there is no User Interaction, the device enters into deep sleep mode, in which it uses the minimum power to prolong battery life. Usually, before entering into deep sleep mode: ○ First screen dims ○ Then screen turns off ○ Finally, CPU switches to the lowest frequency (sleeps)
  • 3. Why wakelock is bad? ● Wakelock enables apps to do tasks transparently in the background, without user's awareness. Which might waste battery power, network data and other resources. ● Apps can switch on the screen without user's intention. This can be quite annoying for the users. ● Buggy apps; Whenever the wakelock is acquired, it must be released, otherwise it can cause sleepless (insomniac) phone. The phone's CPU keeps running or the screen won't turn off
  • 4. Who benefits from WakeLock Detector(WLD)? ● People who suffer from extreme battery drain, even when they are not using phone (this is caused by CPU wakelocks) ● People who are annoyed by random Screen wake-ups (this one is caused by screen-wakelocks) ● People who don’t know which app is keeping their screen on continuously (this one caused by unreleased wakelocks)
  • 5. Technical Knowledge: Wakelock Types in Android System Android PowerManager supports 4 kind of wakelocks for developers, which are used in acquire/release method : Wakelock Type CPU Screen Keyboard PARTIAL_WAKE_LOCK On* Off Off SCREEN_DIM_WAKE_LOCK On Dim Off SCREEN_BRIGHT_WAKE_LOCK On Bright Off FULL_WAKE_LOCK On Bright Bright Note: ○ PARTIAL_WAKE_LOCK must be released by developer after acquiring, otherwise it causes sleepless mode ○ Other wakelock types(screen related wakelocks) are released automatically when the user presses Power Button ○ By using ACQUIRE_CAUSES_WAKE_UP flag developers can turn on the screen while acquiring one of above wakelock types
  • 6. Wakelock types in WLD To simplify the types of wakelocks “Wakelock detector” combines them into 2 types: ● CPU wakelocks ○ PARTIAL_WAKE_LOCK ● Screen wakelocks ○ SCREEN_DIM_WAKELOCK ○ SCREEN_BRIGHT_WAKELOCK ○ FULL_WAKELOCK
  • 7. What is “Wakeup triggers” In Android, there is a feature called “AlarmManager” which can be used by other apps to schedule periodic tasks (e.g: Facebook schedules a task that checks for new events every 5 minutes). This causes the phone to wake-up from its deep sleep mode for certain period of time. “Wakeup triggers” shows those apps which triggered the periodic tasks. It shows the exact amount of how many times the phone has been awaken by the app. By reducing these wakeups the battery life will be prolonged significantly (e.g: Reduce update(refresh) rate of Weather widgets..)
  • 8. Since when wakelock statistics in WLD is shown The Battery management service of Android resets (nullifies) accumulated battery statistics (including wakelock statistics) in two cases: ● while rebooting phone ● when the phone is unplugged with battery level above 90% In Wakelock detector you can see statistics either since the time when it was reset or since the time when you unplugged the cable. If you choose “since unplug” then you have shorter duration but more sophisticated wakelock statistics shown.
  • 10. Before sleep Sunday night: 50% should be enough until tomorrow morning ZZZ however..next morning... Motivations for WLD
  • 11. Motivations for WLD 4:00 AM zzzz screen turns on.. Ads Some new message?