Fix app crash on CM11
This commit is contained in:
parent
fdb4b382df
commit
e325a5c4c1
6 changed files with 10 additions and 5 deletions
Binary file not shown.
|
@ -62,7 +62,7 @@ repositories {
|
|||
|
||||
}
|
||||
|
||||
final SUPPORT_VERSION = '23.2.0'
|
||||
final SUPPORT_VERSION = '23.4.0'
|
||||
|
||||
dependencies {
|
||||
// core android studio module
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="de.luhmer.owncloudnewsreader"
|
||||
android:versionCode="109"
|
||||
android:versionName="0.9.8.5"
|
||||
android:versionCode="110"
|
||||
android:versionName="0.9.8.6"
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
|
|
@ -141,7 +141,7 @@ public class SettingsActivity extends PreferenceActivity {
|
|||
|
||||
Toolbar toolbar = (Toolbar) appBarLayout.getChildAt(0);
|
||||
|
||||
final Drawable backarrow = ContextCompat.getDrawable(this, R.drawable.abc_ic_ab_back_material);
|
||||
final Drawable backarrow = ContextCompat.getDrawable(this, R.drawable.ic_ab_back_material);
|
||||
backarrow.setColorFilter(ContextCompat.getColor(this, R.color.tintColorDark), PorterDuff.Mode.SRC_ATOP);
|
||||
toolbar.setNavigationIcon(backarrow);
|
||||
toolbar.setTitle(R.string.title_activity_settings);
|
||||
|
|
|
@ -89,6 +89,11 @@ Updates
|
|||
---------------------
|
||||
|
||||
|
||||
0.9.8.6 (Google Play)
|
||||
---------------------
|
||||
- Fix app crash - <a href="https://github.com/owncloud/News-Android-App/issues/519">#519 New versions force quit on CM11</a>
|
||||
|
||||
|
||||
0.9.8.5 (Google Play)
|
||||
---------------------
|
||||
- Critical bug fix - <a href="https://github.com/owncloud/News-Android-App/issues/518">#518 Bug in 0.9.8.3: Using the app caused marking all articles as read and starred articles are lost</a>
|
||||
|
|
|
@ -5,7 +5,7 @@ buildscript {
|
|||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:1.3.0'
|
||||
classpath 'com.android.tools.build:gradle:1.5.0'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue