as a failed attempt to make DateFormatter classes to work (get linked/included/whatever)
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"
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'
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">
<activity
android:name=".LatestTransactions"
android:label="@string/app_name"
android:importantForAutofill="no"
android:inputType="date"
android:onClick="pickTransactionDate"
- android:textAlignment="center" />
+ android:selectAllOnFocus="true"
+ android:singleLine="true"
+ android:textAlignment="center"
+ android:textStyle="bold" />
<LinearLayout
android:importantForAutofill="noExcludeDescendants"
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
-<!-- Exclude specific shared preferences that contain GCM registration Id -->
+ <!-- Exclude specific shared preferences that contain GCM registration Id -->
</full-backup-content>