Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AlinaStepanova committed Jun 27, 2024
1 parent 9d3563e commit 795e0a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
applicationId "com.avs.sea.battle"
minSdkVersion 21
targetSdkVersion 34
versionCode 11
versionCode 12
versionName "1.0.$versionCode"
vectorDrawables.useSupportLibrary = true
resourceConfigurations += ['en', 'uk', 'ru']
Expand Down Expand Up @@ -60,17 +60,17 @@ dependencies {
implementation 'com.google.android.material:material:1.12.0'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
testImplementation "org.mockito:mockito-core:3.3.0"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2"

kapt "com.android.databinding:compiler:3.1.4"
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test:rules:1.6.1'
implementation 'com.google.android.play:review:2.0.1'
implementation 'com.google.android.play:review-ktx:2.0.1'
}
Binary file modified app/release/app-release.aab
Binary file not shown.
2 changes: 1 addition & 1 deletion app/src/main/java/com/avs/sea/battle/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import android.net.Uri

fun openGmail(email: String, subject: String?): Intent {
val intent = Intent(Intent.ACTION_SENDTO)
intent.setData(Uri.parse("mailto:")) // only email apps should handle this
intent.setData(Uri.parse("mailto:"))
intent.putExtra(Intent.EXTRA_EMAIL, arrayOf(email))
intent.putExtra(Intent.EXTRA_SUBJECT, subject)
return intent
Expand Down

0 comments on commit 795e0a6

Please sign in to comment.