blob: a650b29b0f2e2f4478357f7c34a521a4171a0768 [file] [log] [blame]
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.example.rubidumconsumer'
compileSdkPreview = 'TiramisuPrivacySandbox'
defaultConfig {
applicationId "com.example.rubidumconsumer"
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation project(':ads-sdk')
implementation 'androidx.appcompat:appcompat:1.4.1'
// This is implementation because of https://github.com/android/android-test/issues/1412
// (or https://issuetracker.google.com/issues/240993946)
// It needs to merge the underlying bootstrap activities to the main manifest
implementation 'androidx.test.ext:junit:1.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}