liato / android-bankdroid

A swedish banking application for your Android device.
http://www.swedroid.se/forum/showthread.php?t=11108
Other
242 stars 173 forks source link

Added support for Android 6.0 Marshmallow #592

Closed fredrike closed 8 years ago

fredrike commented 8 years ago

Attempt to add support for Android-M, to fix #582 .

goober commented 8 years ago

Make sure to update https://github.com/liato/android-bankdroid/blob/master/bankdroid-legacy/build.gradle as well. I think this is why the build fails

fredrike commented 8 years ago

Still fails due to:

liato-android-bankdroid/app/src/main/java/com/liato/bankdroid/appwidget/AutoRefreshService.java:125: error: cannot find symbol
        notification.setLatestEventInfo(context, bank.getDisplayName(), text, contentIntent);
                    ^
  symbol:   method setLatestEventInfo(Context,String,String,PendingIntent)
  location: variable notification of type Notification
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: liato-android-bankdroid/app/src/main/java/com/liato/bankdroid/BankEditActivity.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error

 FAILED

But now we can debug as a joint effort.

fredrike commented 8 years ago

Wow, compiles and looks good.

Still needs test with the re-write of notifications.

fredrike commented 8 years ago

Tested and verified, notifications now works as before.

goober commented 8 years ago

Thanks