apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "org.mono.android.AndroidTestRunner" minSdkVersion 15 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { cFlags "-O0 -g" if (project.hasProperty('mono.bcltests')) cFlags "-DMONO_BCL_TESTS=1" else if (project.hasProperty('mono.debuggertests')) cFlags "-DMONO_DEBUGGER_TESTS=1" if (project.hasProperty('mono.waitforlldb')) cFlags "-DMONO_WAIT_LLDB=1" } } ndk { abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } sourceSets { main { assets.srcDirs = ['assets'] } } externalNativeBuild { cmake { path "CMakeLists.txt" } } packagingOptions{ doNotStrip "**/*.so" } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }