Skip to content
Merged
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
16 changes: 8 additions & 8 deletions firebase-appdistribution/test-app/test-app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ plugins {
}

android {
compileSdkVersion 31
compileSdk 33

defaultConfig {
applicationId "com.googletest.firebase.appdistribution.testapp"
minSdkVersion 19
targetSdkVersion 31
targetSdkVersion 33
versionName "1.0"
versionCode 1

Expand Down Expand Up @@ -65,18 +65,18 @@ dependencies {
// In this test project we also need to explicitly declare these dependencies
implementation project(':firebase-appdistribution-api')
implementation project(':firebase-common:ktx')
implementation "com.google.android.gms:play-services-tasks:18.0.1"
implementation "com.google.android.gms:play-services-tasks:18.0.2"

// Debug uses the full implementation
debugImplementation project(':firebase-appdistribution')

// Other dependencies
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation 'androidx.core:core-ktx:1.5.0'
implementation "androidx.core:core:1.6.0"
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.core:core-ktx:1.9.0'
implementation "androidx.core:core:1.9.0"
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.+'
}

Expand Down