Skip to content

Commit be98f08

Browse files
committed
Moved build level from Level 10 (2.33) to Level 7 (2.1) to allow older android users.
1 parent b295cc0 commit be98f08

20 files changed

+46
-2
lines changed

.classpath

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

.project

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Techinc-Notify</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>

AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<uses-permission android:name="android.permission.INTERNET" />
99
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
10-
<uses-sdk android:targetSdkVersion="10" android:minSdkVersion="10"/>
10+
<uses-sdk android:targetSdkVersion="7" android:minSdkVersion="7"/>
1111

1212
<application
1313
android:icon="@drawable/ic_launcher"

bin/Techinc-Notify.apk

62.7 KB
Binary file not shown.

bin/classes.dex

-64 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

bin/resources.ap_

1.43 KB
Binary file not shown.

project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
1212

1313
# Project target.
14-
target=android-10
14+
target=android-7

src/org/spoofer/techinc/PreferenceSettings.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import android.media.RingtoneManager;
88
import android.net.Uri;
99
import android.os.Bundle;
10+
import android.util.Log;
1011
import android.view.View;
1112
import android.widget.Button;
1213
import android.widget.CheckBox;
@@ -21,6 +22,8 @@ public class PreferenceSettings extends Activity {
2122
/** Called when the activity is first created. */
2223
@Override
2324
public void onCreate(Bundle savedInstanceState) {
25+
Log.v(LOG_TAG, "creating preferences activity");
26+
2427
super.onCreate(savedInstanceState);
2528
setContentView(R.layout.main);
2629

0 commit comments

Comments
 (0)