@@ -2,8 +2,8 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.TwentyCodes.android.LocationRinger"
|
package="com.TwentyCodes.android.LocationRinger"
|
||||||
android:installLocation="internalOnly"
|
android:installLocation="internalOnly"
|
||||||
android:versionCode="67"
|
android:versionCode="70"
|
||||||
android:versionName="19b5c13" >
|
android:versionName="f06f790" >
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
|
||||||
|
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".ui.RingerInformationActivity"
|
android:name=".ui.RingerInformationActivity"
|
||||||
android:configChanges="keyboard|orientation" />
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:launchMode="singleTask"/>
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".receivers.SystemReceiver"
|
android:name=".receivers.SystemReceiver"
|
||||||
|
|||||||
BIN
LocationRinger/res/drawable-hdpi-v11/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 983 B |
BIN
LocationRinger/res/drawable-hdpi-v9/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 886 B |
BIN
LocationRinger/res/drawable-hdpi/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
BIN
LocationRinger/res/drawable-ldpi-v11/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 450 B |
BIN
LocationRinger/res/drawable-ldpi-v9/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 426 B |
BIN
LocationRinger/res/drawable-ldpi/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 636 B |
|
Before Width: | Height: | Size: 707 B |
|
Before Width: | Height: | Size: 709 B |
BIN
LocationRinger/res/drawable-mdpi-v11/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 645 B |
BIN
LocationRinger/res/drawable-mdpi-v9/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 596 B |
BIN
LocationRinger/res/drawable-mdpi/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 899 B |
|
Before Width: | Height: | Size: 1020 B |
|
Before Width: | Height: | Size: 1.0 KiB |
BIN
LocationRinger/res/drawable-xhdpi-v11/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
LocationRinger/res/drawable-xhdpi-v9/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
LocationRinger/res/drawable-xhdpi/ic_stat_locationringer.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
@@ -124,7 +124,7 @@ public class LocationService extends com.TwentyCodes.android.location.LocationSe
|
|||||||
mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
|
mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
|
||||||
final NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()).setContentTitle(getString(R.string.app_name))
|
final NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()).setContentTitle(getString(R.string.app_name))
|
||||||
.setContentText(this.getString(R.string.gathering)).setTicker(this.getString(R.string.gathering)).setSmallIcon(R.drawable.icon)
|
.setContentText(this.getString(R.string.gathering)).setTicker(this.getString(R.string.gathering)).setSmallIcon(R.drawable.ic_stat_locationringer)
|
||||||
.setContentIntent(PendingIntent.getActivity(this, 0, new Intent(this, ListActivity.class), android.content.Intent.FLAG_ACTIVITY_NEW_TASK))
|
.setContentIntent(PendingIntent.getActivity(this, 0, new Intent(this, ListActivity.class), android.content.Intent.FLAG_ACTIVITY_NEW_TASK))
|
||||||
.setWhen(System.currentTimeMillis()).setOngoing(true);
|
.setWhen(System.currentTimeMillis()).setOngoing(true);
|
||||||
|
|
||||||
|
|||||||