Skip to content

Commit

Permalink
changelogs/176.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshnsears committed Aug 25, 2024
1 parent 9b457ac commit f687095
Show file tree
Hide file tree
Showing 31 changed files with 633 additions and 314 deletions.
1 change: 1 addition & 0 deletions .idea/androidTestResultsUserPreferences.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 44 additions & 11 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 0 additions & 71 deletions .idea/runConfigurations/_app.xml

This file was deleted.

1 change: 0 additions & 1 deletion .idea/runConfigurations/_app_androidTest.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion QuoteUnquote.utilsLib
42 changes: 24 additions & 18 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (!localPropertiesFile.exists()) {
localProperties.load(new FileInputStream(localPropertiesFile))

android {
compileSdk 34
compileSdk 35

signingConfigs {
googleplay {
Expand All @@ -41,14 +41,14 @@ android {

defaultConfig {
minSdkVersion 24
targetSdkVersion 34
targetSdkVersion 35

applicationId "com.github.jameshnsears.quoteunquote"

// changelog version | min sdk | target sdk
versionCode 1752434
versionCode 1762434
// semantic versioning
versionName "4.42.0"
versionName "4.43.0"

vectorDrawables.useSupportLibrary = true

Expand Down Expand Up @@ -145,18 +145,22 @@ android {
fdroid {
assets.srcDirs = ['src/main/assets']
java.srcDirs = ['src/main/java', 'src/fdroid/java']
kotlin.srcDirs = ['src/main/kotlin']
}
googleplay {
assets.srcDirs = ['src/main/assets']
java.srcDirs = ['src/main/java']
kotlin.srcDirs = ['src/main/kotlin']
}
espresso {
assets.srcDirs = ['src/main/assets']
java.srcDirs = ['src/main/java']
kotlin.srcDirs = ['src/main/kotlin']
}
uiautomator {
assets.srcDirs = ['src/main/assets']
java.srcDirs = ['src/main/java']
kotlin.srcDirs = ['src/main/kotlin']
}
}

Expand Down Expand Up @@ -206,41 +210,43 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.2.1'
androidTestImplementation 'androidx.test:rules:1.6.1'
androidTestImplementation 'androidx.test:runner:1.6.1'
androidTestImplementation 'androidx.test:runner:1.6.2'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.3.0'
androidTestImplementation 'io.mockk:mockk-android:1.13.11'
androidTestImplementation 'io.mockk:mockk-android:1.13.12'

annotationProcessor 'androidx.room:room-compiler:2.6.1'

debugImplementation 'androidx.fragment:fragment-testing:1.8.1'
debugImplementation 'androidx.fragment:fragment-testing:1.8.2'
debugImplementation 'androidx.test:core-ktx:1.6.1'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.14'

googleplayImplementation platform('com.google.firebase:firebase-bom:33.1.1')
googleplayImplementation platform('com.google.firebase:firebase-bom:33.2.0')

implementation 'androidx.activity:activity-ktx:1.9.0'
implementation 'androidx.activity:activity-ktx:1.9.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.databinding:databinding-runtime:8.5.0'
implementation 'androidx.databinding:databinding-runtime:8.5.2'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.room:room-guava:2.6.1'
implementation 'androidx.room:room-runtime:2.6.1'
implementation 'androidx.room:room-rxjava2:2.6.1'
implementation 'com.github.skydoves:colorpickerpreference:2.0.6'
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.guava:guava:33.2.1-jre'
implementation 'com.google.guava:guava:33.3.0-jre'
implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0'
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
implementation 'net.pwall.json:json-kotlin-schema:0.47'
implementation 'org.apache.commons:commons-csv:1.10.0'
implementation 'org.jsoup:jsoup:1.17.2'
implementation 'net.pwall.json:json-kotlin-schema:0.48'
implementation 'org.apache.commons:commons-csv:1.11.0'
implementation 'org.jsoup:jsoup:1.18.1'
implementation 'androidx.work:work-runtime-ktx:2.9.1'
implementation 'androidx.work:work-runtime:2.9.1'
implementation project(path: ':cloudLib')
implementation project(path: ':utilsLib')

Expand All @@ -249,12 +255,12 @@ dependencies {
testImplementation 'androidx.test:core-ktx:1.6.1'
testImplementation 'androidx.test.ext:junit:1.2.1'
testImplementation 'androidx.test:rules:1.6.1'
testImplementation 'ch.qos.logback:logback-classic:1.5.6'
testImplementation 'com.google.guava:guava:33.2.1-jre'
testImplementation 'io.mockk:mockk:1.13.11'
testImplementation 'ch.qos.logback:logback-classic:1.5.7'
testImplementation 'com.google.guava:guava:33.3.0-jre'
testImplementation 'io.mockk:mockk:1.13.12'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1'
testImplementation 'org.robolectric:robolectric:4.12.2'
testImplementation 'org.robolectric:robolectric:4.13'
}

repositories {
Expand Down
4 changes: 3 additions & 1 deletion app/src/androidTest/assets/ImportMissingQuotation.csv
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
author||
a||b
author||
c||d
2 changes: 2 additions & 0 deletions app/src/androidTest/assets/ImportOnlyAuthorNoDelimiter.csv
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
a||b
c||d
Robert C. Martin
3 changes: 3 additions & 0 deletions app/src/androidTest/assets/ImportOnlyAuthorWithDelimiter.csv
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
a||b
c||d
e||f
Robert C. Martin||
Loading

0 comments on commit f687095

Please sign in to comment.