Update dependencies and clean up more files

This commit is contained in:
Billy Brawner 2019-04-29 19:57:55 -07:00 committed by William Brawner
parent 1618524308
commit 3a194e14e4
5 changed files with 20 additions and 28 deletions

View file

@ -27,8 +27,8 @@ android {
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 28 targetSdkVersion 28
multiDexEnabled true multiDexEnabled true
versionCode 17 versionCode 18
versionName "0.6.0-beta2" versionName "0.6.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }
signingConfigs { signingConfigs {
@ -47,9 +47,6 @@ android {
} }
} }
flavorDimensions "platform" flavorDimensions "platform"
productFlavors {
standard {}
}
dexOptions { dexOptions {
jumboMode true jumboMode true
} }
@ -66,7 +63,7 @@ ext {
} }
dependencies { dependencies {
annotationProcessor 'com.google.dagger:dagger-compiler:2.16' annotationProcessor 'com.google.dagger:dagger-compiler:2.21'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0' annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
testImplementation 'org.robolectric:robolectric:4.2' testImplementation 'org.robolectric:robolectric:4.2'
@ -83,12 +80,12 @@ dependencies {
implementation "com.android.support:design:$support_version" implementation "com.android.support:design:$support_version"
implementation "com.android.support:support-v13:$support_version" implementation "com.android.support:support-v13:$support_version"
implementation 'com.commonsware.cwac:anddown:0.3.0' implementation 'com.commonsware.cwac:anddown:0.3.0'
implementation 'com.google.dagger:dagger:2.16' implementation 'com.google.dagger:dagger:2.21'
implementation 'com.jakewharton:butterknife:8.8.1' implementation 'com.jakewharton:butterknife:8.8.1'
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0' implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.0.0' implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.6' implementation 'io.reactivex.rxjava2:rxjava:2.2.7'
implementation 'com.google.firebase:firebase-core:16.0.8' implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.android.billingclient:billing:1.2' implementation 'com.android.billingclient:billing:1.2'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9' implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'

View file

@ -3,11 +3,11 @@
First and foremost, Simple Markdown DOES NOT collect any personally identifiable information. The First and foremost, Simple Markdown DOES NOT collect any personally identifiable information. The
internet access permission is requested primarily for retrieving images from the internet in internet access permission is requested primarily for retrieving images from the internet in
case you embed them in your markdown, but it also allows me to send automated error and crash case you embed them in your markdown, but it also allows me to send automated error and crash
reports to myself whenever the app runs into an issue. These error reports are powered by reports to myself whenever the app runs into an issue. These error reports are opt-out, and are
[Firebase Crashlytics] (https://firebase.google.com/docs/crashlytics/), which is a free error powered by [Firebase Crashlytics] (https://firebase.google.com/docs/crashlytics/), which is a
reporting solution provided by Google. These error reports are used exclusively for fixing free error reporting solution provided by Google. These error reports are used exclusively for
problems that occur while you're using the app, along with some analytics info like how long you fixing problems that occur while you're using the app, along with some analytics info like how
use the app for, how often, and which features of the app you use. This helps me to determine long you use the app for, how often, and which features of the app you use. This helps me to
how to spend my very limited time on building out new features. I'll have to defer to [Google's determine how to spend my very limited time on building out new features. I'll have to defer to
Privacy Policy](https://policies.google.com/privacy) to explain how they handle the data. As [Google's Privacy Policy](https://policies.google.com/privacy) to explain how they handle the
for me, I don't knowingly or willingly sell or trade your data. data. As for me, I don't knowingly or willingly sell or trade your data.

View file

@ -11,6 +11,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@null"
android:gravity="top" android:gravity="top"
android:fontFamily="monospace"
android:hint="@string/markdown_here" android:hint="@string/markdown_here"
android:imeOptions="flagNoExtractUi" android:imeOptions="flagNoExtractUi"
android:inputType="textMultiLine|textCapSentences" android:inputType="textMultiLine|textCapSentences"

View file

@ -21,10 +21,10 @@
android:summaryOff="@string/pref_error_reports_off" android:summaryOff="@string/pref_error_reports_off"
android:summaryOn="@string/pref_error_reports_on" android:summaryOn="@string/pref_error_reports_on"
android:title="@string/pref_title_error_reports" /> android:title="@string/pref_title_error_reports" />
<EditTextPreference <!--<EditTextPreference-->
android:defaultValue="@string/pref_custom_css_default" <!--android:defaultValue="@string/pref_custom_css_default"-->
android:key="@string/pref_custom_css" <!--android:key="@string/pref_custom_css"-->
android:title="@string/pref_title_custom_css" <!--android:title="@string/pref_title_custom_css"-->
android:summary="@string/pref_description_custom_css" /> <!--android:summary="@string/pref_description_custom_css" />-->
</PreferenceScreen> </PreferenceScreen>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wbrawner.simplemarkdown">
<uses-permission android:name="com.samsung.android.iap.permission.BILLING"/>
</manifest>