diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index 3ff85fa8..389a62ff 100755 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -3,7 +3,7 @@ package="org.purplei2p.i2pd" android:versionCode="1" android:versionName="2.13.0"> - + diff --git a/android/libs/.gitignore b/android/libs/.gitignore deleted file mode 100644 index e4e4e6c1..00000000 --- a/android/libs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -armeabi-v7a diff --git a/android/libs/android-support-v4.jar b/android/libs/android-support-v4.jar deleted file mode 100644 index 2ff47f4f..00000000 Binary files a/android/libs/android-support-v4.jar and /dev/null differ diff --git a/android/src/org/purplei2p/i2pd/ForegroundService.java b/android/src/org/purplei2p/i2pd/ForegroundService.java index 6ff826c4..16155651 100644 --- a/android/src/org/purplei2p/i2pd/ForegroundService.java +++ b/android/src/org/purplei2p/i2pd/ForegroundService.java @@ -6,7 +6,6 @@ import android.app.Service; import android.content.Intent; import android.os.Binder; import android.os.IBinder; -import android.support.v4.app.NotificationCompat; import android.util.Log; public class ForegroundService extends Service { @@ -72,7 +71,7 @@ public class ForegroundService extends Service { new Intent(this, I2PD.class), 0); // Set the info for the views that show in the notification panel. - Notification notification = new NotificationCompat.Builder(this) + Notification notification = new Notification.Builder(this) .setSmallIcon(R.drawable.itoopie_notification_icon) // the status icon .setTicker(text) // the status text .setWhen(System.currentTimeMillis()) // the time stamp @@ -85,4 +84,4 @@ public class ForegroundService extends Service { //mNM.notify(NOTIFICATION, notification); startForeground(NOTIFICATION, notification); } -} \ No newline at end of file +}