Skip to content

Commit 37bcf4f

Browse files
committed
Original source - application with prevents sleep when charging (for old Android firmwares and devices)
1 parent 94e67eb commit 37bcf4f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+550
-0
lines changed

waketest1/.classpath

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

waketest1/.project

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>waketest1</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3+
org.eclipse.jdt.core.compiler.compliance=1.6
4+
org.eclipse.jdt.core.compiler.source=1.6

waketest1/AndroidManifest.xml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.waketest1"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="10"
9+
android:targetSdkVersion="21" />
10+
11+
<uses-permission android:name="android.permission.VIBRATE" />
12+
<uses-permission android:name="android.permission.WAKE_LOCK" />
13+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
14+
15+
<application
16+
android:allowBackup="true"
17+
android:icon="@drawable/ic_launcher"
18+
android:label="@string/app_name"
19+
android:theme="@style/AppTheme" >
20+
<activity
21+
android:name=".MainActivity"
22+
android:label="@string/app_name" >
23+
<intent-filter>
24+
<action android:name="android.intent.action.MAIN" />
25+
26+
<category android:name="android.intent.category.LAUNCHER" />
27+
</intent-filter>
28+
</activity>
29+
30+
<receiver
31+
android:name=".MyPowerStatusReceiver"
32+
android:enabled="true"
33+
android:exported="true" >
34+
<intent-filter>
35+
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
36+
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
37+
<action android:name="android.intent.action.BOOT_COMPLETED" />
38+
</intent-filter>
39+
</receiver>
40+
41+
<service
42+
android:name=".MyWakeService"
43+
android:enabled="true"
44+
android:exported="true" >
45+
</service>
46+
47+
</application>
48+
49+
</manifest>

waketest1/ic_launcher-web.png

50.2 KB

waketest1/libs/android-support-v4.jar

741 KB
Binary file not shown.

waketest1/lint.xml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
</lint>

waketest1/proguard-project.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To enable ProGuard in your project, edit project.properties
2+
# to define the proguard.config property as described in that file.
3+
#
4+
# Add project specific ProGuard rules here.
5+
# By default, the flags in this file are appended to flags specified
6+
# in ${sdk.dir}/tools/proguard/proguard-android.txt
7+
# You can edit the include path and order by changing the ProGuard
8+
# include property in project.properties.
9+
#
10+
# For more details, see
11+
# http://developer.android.com/guide/developing/tools/proguard.html
12+
13+
# Add any project specific keep options here:
14+
15+
# If your project uses WebView with JS, uncomment the following
16+
# and specify the fully qualified class name to the JavaScript interface
17+
# class:
18+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19+
# public *;
20+
#}

waketest1/project.properties

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-19
15+
android.library.reference.1=../appcompat_v7
7.48 KB
3.69 KB
730 Bytes
1.84 KB
12.2 KB
24.2 KB
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools"
3+
android:layout_width="match_parent"
4+
android:layout_height="match_parent"
5+
android:paddingBottom="@dimen/activity_vertical_margin"
6+
android:paddingLeft="@dimen/activity_horizontal_margin"
7+
android:paddingRight="@dimen/activity_horizontal_margin"
8+
android:paddingTop="@dimen/activity_vertical_margin"
9+
tools:context="com.example.waketest1.MainActivity" >
10+
11+
<ToggleButton
12+
android:id="@+id/toggleButton1"
13+
android:layout_width="wrap_content"
14+
android:layout_height="wrap_content"
15+
android:layout_centerHorizontal="true"
16+
android:layout_centerVertical="true"
17+
android:text="ToggleButton" />
18+
19+
</RelativeLayout>

waketest1/res/menu/main.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<menu xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:app="http://schemas.android.com/apk/res-auto"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
tools:context="com.example.waketest1.MainActivity" >
5+
6+
<item
7+
android:id="@+id/action_settings"
8+
android:orderInCategory="100"
9+
android:title="@string/action_settings"
10+
app:showAsAction="never"/>
11+
12+
</menu>

waketest1/res/values-v11/styles.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 11+. This theme completely replaces
5+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
6+
-->
7+
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
8+
<!-- API 11 theme customizations can go here. -->
9+
</style>
10+
11+
</resources>

waketest1/res/values-v14/styles.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 14+. This theme completely replaces
5+
AppBaseTheme from BOTH res/values/styles.xml and
6+
res/values-v11/styles.xml on API 14+ devices.
7+
-->
8+
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
9+
<!-- API 14 theme customizations can go here. -->
10+
</style>
11+
12+
</resources>
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<resources>
2+
3+
<!--
4+
Example customization of dimensions originally defined in res/values/dimens.xml
5+
(such as screen margins) for screens with more than 820dp of available width. This
6+
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
7+
-->
8+
<dimen name="activity_horizontal_margin">64dp</dimen>
9+
10+
</resources>

waketest1/res/values/dimens.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<resources>
2+
3+
<!-- Default screen margins, per the Android Design guidelines. -->
4+
<dimen name="activity_horizontal_margin">16dp</dimen>
5+
<dimen name="activity_vertical_margin">16dp</dimen>
6+
7+
</resources>

waketest1/res/values/strings.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<string name="app_name">waketest1</string>
5+
<string name="hello_world">Hello world!</string>
6+
<string name="action_settings">Settings</string>
7+
<string name="new_message_notification_title_template">New message: %1$s</string>
8+
<string name="new_message_notification_placeholder_text_template">You said %1$s. WakeLock acquired.</string>
9+
<string name="action_share">Share</string>
10+
<string name="action_reply">Reply</string>
11+
12+
</resources>

waketest1/res/values/styles.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme, dependent on API level. This theme is replaced
5+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6+
-->
7+
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
8+
<!--
9+
Theme customizations available in newer API levels can go in
10+
res/values-vXX/styles.xml, while customizations related to
11+
backward-compatibility can go here.
12+
-->
13+
</style>
14+
15+
<!-- Application theme. -->
16+
<style name="AppTheme" parent="AppBaseTheme">
17+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
18+
</style>
19+
20+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
package com.example.waketest1;
2+
3+
import java.util.Timer;
4+
import java.util.TimerTask;
5+
6+
import android.support.v7.app.ActionBarActivity;
7+
import android.annotation.SuppressLint;
8+
import android.content.Intent;
9+
import android.os.Bundle;
10+
import android.os.Handler;
11+
import android.os.Message;
12+
import android.util.Log;
13+
import android.view.Menu;
14+
import android.view.MenuItem;
15+
import android.widget.CompoundButton;
16+
import android.widget.CompoundButton.OnCheckedChangeListener;
17+
import android.widget.ToggleButton;
18+
19+
20+
public class MainActivity extends ActionBarActivity {
21+
22+
Timer mTimer;
23+
24+
@Override
25+
protected void onCreate(Bundle savedInstanceState) {
26+
super.onCreate(savedInstanceState);
27+
setContentView(R.layout.activity_main);
28+
final ToggleButton tb = (ToggleButton)findViewById(R.id.toggleButton1);
29+
tb.setOnCheckedChangeListener(new OnCheckedChangeListener() {
30+
31+
@Override
32+
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
33+
if (isChecked) {
34+
startService(new Intent(MainActivity.this, MyWakeService.class));
35+
}
36+
else {
37+
stopService(new Intent(MainActivity.this, MyWakeService.class));
38+
}
39+
}
40+
});
41+
}
42+
43+
@SuppressLint("HandlerLeak")
44+
@Override
45+
protected void onResume() {
46+
final ToggleButton tb = (ToggleButton)findViewById(R.id.toggleButton1);
47+
final Handler handler = new Handler() {
48+
public void handleMessage(Message msg) {
49+
tb.setChecked(MyWakeService.isStarted());
50+
}
51+
};
52+
mTimer = new Timer();
53+
mTimer.scheduleAtFixedRate(new TimerTask() {
54+
@Override
55+
public void run() {
56+
handler.obtainMessage().sendToTarget();
57+
}
58+
}, 0, 1000);
59+
super.onResume();
60+
}
61+
62+
@Override
63+
protected void onPause() {
64+
mTimer.cancel();
65+
mTimer.purge();
66+
super.onPause();
67+
}
68+
69+
@Override
70+
public boolean onCreateOptionsMenu(Menu menu) {
71+
// Inflate the menu; this adds items to the action bar if it is present.
72+
getMenuInflater().inflate(R.menu.main, menu);
73+
return true;
74+
}
75+
76+
@Override
77+
public boolean onOptionsItemSelected(MenuItem item) {
78+
// Handle action bar item clicks here. The action bar will
79+
// automatically handle clicks on the Home/Up button, so long
80+
// as you specify a parent activity in AndroidManifest.xml.
81+
int id = item.getItemId();
82+
if (id == R.id.action_settings) {
83+
return true;
84+
}
85+
return super.onOptionsItemSelected(item);
86+
}
87+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.waketest1;
2+
3+
import android.content.BroadcastReceiver;
4+
import android.content.Context;
5+
import android.content.Intent;
6+
import android.os.BatteryManager;
7+
import android.util.Log;
8+
9+
public class MyPowerStatusReceiver extends BroadcastReceiver {
10+
public MyPowerStatusReceiver() {
11+
}
12+
13+
@Override
14+
public void onReceive(Context context, Intent intent) {
15+
if (intent.getAction().equals(Intent.ACTION_POWER_CONNECTED))
16+
context.startService(new Intent(context, MyWakeService.class));
17+
else if (intent.getAction().equals(Intent.ACTION_POWER_DISCONNECTED))
18+
context.stopService(new Intent(context, MyWakeService.class));
19+
}
20+
}

0 commit comments

Comments
 (0)