From 51acc2390258436e3d97de216ff6d624ac07ce5f Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Fri, 30 Nov 2018 17:44:28 +0000 Subject: [PATCH] bump support to API ver 28 as a failed attempt to make DateFormatter classes to work (get linked/included/whatever) --- app/build.gradle | 10 +++++----- app/src/main/AndroidManifest.xml | 3 ++- .../main/res/layout-v26/content_new_transaction.xml | 5 ++++- app/src/main/res/xml/backup_descriptor.xml | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 3397bcd5..7376229a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 27 + compileSdkVersion 28 defaultConfig { applicationId "net.ktnx.mobileledger" minSdkVersion 23 - targetSdkVersion 27 + targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -21,9 +21,9 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:appcompat-v7:27.1.1' - implementation 'com.android.support:support-v4:27.1.1' - implementation 'com.android.support:design:27.1.1' + implementation 'com.android.support:appcompat-v7:28.0.0' + implementation 'com.android.support:support-v4:28.0.0' + implementation 'com.android.support:design:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 2ab3ca04..ee612ac4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -8,7 +8,8 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/AppTheme"> + android:theme="@style/AppTheme" + android:fullBackupContent="@xml/backup_descriptor"> + android:selectAllOnFocus="true" + android:singleLine="true" + android:textAlignment="center" + android:textStyle="bold" /> - + -- 2.39.2