mirror of
https://github.com/nerzhul/ownCloud-SMS-App.git
synced 2025-06-10 09:26:21 +00:00
Crashfix -> 0.21.1
This commit is contained in:
parent
1fbb1525c6
commit
d7e1ec729f
@ -43,8 +43,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.github.owncloud:android-library:oc-android-library-0.9.10'
|
compile project(':owncloudAndroidLibrary')
|
||||||
|
|
||||||
compile 'com.android.support:support-v13:23.1.1'
|
compile 'com.android.support:support-v13:23.1.1'
|
||||||
compile 'com.android.support:appcompat-v7:23.1.1'
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
||||||
compile 'com.android.support:design:23.1.1'
|
compile 'com.android.support:design:23.1.1'
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest package="fr.unix_experience.owncloud_sms"
|
<manifest package="fr.unix_experience.owncloud_sms"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:versionCode="35"
|
android:versionCode="36"
|
||||||
android:versionName="0.21.0"> <!-- From Android 4.0 to 6.0 -->
|
android:versionName="0.21.1"> <!-- From Android 4.0 to 6.0 -->
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
android:maxSdkVersion="23"
|
android:maxSdkVersion="23"
|
||||||
android:minSdkVersion="14"
|
android:minSdkVersion="14"
|
||||||
|
@ -43,7 +43,7 @@ public class OCSMSNotificationUI {
|
|||||||
final Bitmap picture = BitmapFactory.decodeResource(res, R.drawable.ic_launcher);
|
final Bitmap picture = BitmapFactory.decodeResource(res, R.drawable.ic_launcher);
|
||||||
|
|
||||||
|
|
||||||
final String ticker = titleString.substring(0, 20);
|
final String ticker = (titleString.length() > 20) ? titleString.substring(0, 20) : titleString;
|
||||||
final String title = res.getString(R.string.ui_notification_title_template, titleString);
|
final String title = res.getString(R.string.ui_notification_title_template, titleString);
|
||||||
|
|
||||||
final NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
|
final NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user