@@ -10,15 +10,15 @@ apply from: '../detekt.gradle'
10
10
apply from : ' ../checkstyle.gradle'
11
11
apply from : ' ../sonarcube.gradle'
12
12
13
- def localPropertiesFile = rootProject. file(" local.properties" )
14
- def localProperties = new Properties ()
13
+ final def localPropertiesFile = rootProject. file(" local.properties" )
14
+ final def localProperties = new Properties ()
15
15
16
16
if (! localPropertiesFile. exists()) {
17
17
localProperties. setProperty(" RELEASE_STORE_PASSWORD" , " " )
18
18
localProperties. setProperty(" RELEASE_KEY_PASSWORD" , " " )
19
19
localProperties. setProperty(" RELEASE_KEY_ALIAS" , " " )
20
20
localProperties. setProperty(" RELEASE_STORE_FILE" , " keystore.jks" )
21
- Writer writer = new FileWriter (localPropertiesFile, false )
21
+ final Writer writer = new FileWriter (localPropertiesFile, false )
22
22
localProperties. store(writer, " empty, as creating the file is done manually via gpg" )
23
23
writer. close()
24
24
@@ -28,7 +28,7 @@ if (!localPropertiesFile.exists()) {
28
28
localProperties. load(new FileInputStream (localPropertiesFile))
29
29
30
30
android {
31
- compileSdk 33
31
+ compileSdk 34
32
32
33
33
signingConfigs {
34
34
googleplay {
@@ -41,14 +41,14 @@ android {
41
41
42
42
defaultConfig {
43
43
minSdkVersion 24
44
- targetSdkVersion 33
44
+ targetSdkVersion 34
45
45
46
46
applicationId " com.github.jameshnsears.quoteunquote"
47
47
48
48
// changelog version | min sdk | target sdk
49
- versionCode 1612433
49
+ versionCode 1622433
50
50
// semantic versioning
51
- versionName " 4.33 .0"
51
+ versionName " 4.34 .0"
52
52
53
53
vectorDrawables. useSupportLibrary = true
54
54
@@ -194,7 +194,7 @@ android {
194
194
195
195
dependencies {
196
196
androidTestImplementation ' androidx.arch.core:core-testing:2.2.0'
197
- androidTestImplementation ' androidx.room:room-testing:2.5.1 '
197
+ androidTestImplementation ' androidx.room:room-testing:2.5.2 '
198
198
androidTestImplementation ' androidx.test:core:1.5.0'
199
199
androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1'
200
200
androidTestImplementation ' androidx.test.ext:junit:1.1.5'
@@ -204,11 +204,11 @@ dependencies {
204
204
androidTestImplementation ' androidx.test.uiautomator:uiautomator:2.2.0'
205
205
androidTestImplementation ' io.mockk:mockk-android:1.13.5'
206
206
207
- annotationProcessor ' androidx.room:room-compiler:2.5.1 '
207
+ annotationProcessor ' androidx.room:room-compiler:2.5.2 '
208
208
209
209
debugImplementation ' androidx.fragment:fragment-testing:1.6.0'
210
210
debugImplementation ' androidx.test:core-ktx:1.5.0'
211
- debugImplementation ' com.squareup.leakcanary:leakcanary-android:2.11 '
211
+ debugImplementation ' com.squareup.leakcanary:leakcanary-android:2.12 '
212
212
213
213
googleplayImplementation ' com.google.firebase:firebase-analytics:21.3.0'
214
214
googleplayImplementation ' com.google.firebase:firebase-crashlytics:18.3.7'
@@ -236,20 +236,20 @@ dependencies {
236
236
implementation ' net.pwall.json:json-kotlin-schema:0.39'
237
237
implementation ' org.apache.commons:commons-csv:1.10.0'
238
238
implementation ' org.jsoup:jsoup:1.16.1'
239
- implementation platform(' com.google.firebase:firebase-bom:32.1.0 ' )
239
+ implementation platform(' com.google.firebase:firebase-bom:32.1.1 ' )
240
240
implementation project(path : ' :cloudLib' )
241
241
implementation project(path : ' :utilsLib' )
242
242
243
243
testImplementation ' androidx.arch.core:core-testing:2.2.0'
244
- testImplementation ' androidx.room:room-testing:2.5.1 '
244
+ testImplementation ' androidx.room:room-testing:2.5.2 '
245
245
testImplementation ' androidx.test:core-ktx:1.5.0'
246
246
testImplementation ' androidx.test.ext:junit:1.1.5'
247
247
testImplementation ' androidx.test:rules:1.5.0'
248
- testImplementation ' ch.qos.logback:logback-classic:1.4.7 '
248
+ testImplementation ' ch.qos.logback:logback-classic:1.4.8 '
249
249
testImplementation ' com.google.guava:guava:32.0.0-jre'
250
250
testImplementation ' io.mockk:mockk:1.13.5'
251
251
testImplementation ' junit:junit:4.13.2'
252
- testImplementation ' org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.1 '
252
+ testImplementation ' org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.2 '
253
253
testImplementation ' org.robolectric:robolectric:4.10.3'
254
254
}
255
255
0 commit comments