apply plugin: 'com.android.application' android { compileSdkVersion 32 buildToolsVersion "32.0.0" defaultConfig { applicationId "com.anychart.anychart" minSdkVersion 21 targetSdkVersion 32 versionCode 7 versionName "1.4" multiDexEnabled true testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } testOptions { unitTests.all { testLogging { outputs.upToDateWhen { false } events "passed", "failed", "standardError" showCauses true showExceptions true } } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(":anychart") implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.recyclerview:recyclerview:1.2.0' implementation 'androidx.cardview:cardview:1.0.0' testImplementation 'junit:junit:4.13.2' implementation 'androidx.annotation:annotation:1.2.0' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test:rules:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.1.0', { exclude group: 'com.android.support', module: 'support-annotations' exclude group: 'com.android.support', module: 'support-v4' exclude group: 'com.android.support', module: 'design' exclude group: 'com.android.support', module: 'recyclerview-v7' } androidTestImplementation 'androidx.test.espresso:espresso-web:3.3.0' }