Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Reply dependency versions
  • Loading branch information
hunterstich committed Jan 14, 2021
commit fc6f455ec84df6d8056dbfa2f03a5bb45fd66ae2
6 changes: 3 additions & 3 deletions Reply/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"

android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
applicationId "com.materialstudies.reply"
minSdkVersion 23
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -65,7 +65,7 @@ dependencies {
implementation 'com.google.android.material:material:1.2.1'

// Testing
testImplementation 'junit:junit:4.13'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
6 changes: 3 additions & 3 deletions Reply/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

buildscript {
ext {
kotlin_version = '1.4.10'
navigation_version = '2.3.1'
kotlin_version = '1.4.21'
navigation_version = '2.3.2'
}
repositories {
google()
jcenter()
}
dependencies{
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"

Expand Down