1*288bf522SAndroid Build Coastguard Workerapply plugin: 'com.android.application' 2*288bf522SAndroid Build Coastguard Worker 3*288bf522SAndroid Build Coastguard Workerandroid { 4*288bf522SAndroid Build Coastguard Worker compileSdkVersion 30 5*288bf522SAndroid Build Coastguard Worker defaultConfig { 6*288bf522SAndroid Build Coastguard Worker applicationId "simpleperf.demo.java_api" 7*288bf522SAndroid Build Coastguard Worker // Simpleperf profiles interpreted/jitted Java code on Android >= P. 8*288bf522SAndroid Build Coastguard Worker // https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepare-an-android-application 9*288bf522SAndroid Build Coastguard Worker minSdkVersion 28 10*288bf522SAndroid Build Coastguard Worker targetSdkVersion 30 11*288bf522SAndroid Build Coastguard Worker versionCode 1 12*288bf522SAndroid Build Coastguard Worker versionName "1.0" 13*288bf522SAndroid Build Coastguard Worker } 14*288bf522SAndroid Build Coastguard Worker buildTypes { 15*288bf522SAndroid Build Coastguard Worker release { 16*288bf522SAndroid Build Coastguard Worker minifyEnabled false 17*288bf522SAndroid Build Coastguard Worker proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 18*288bf522SAndroid Build Coastguard Worker } 19*288bf522SAndroid Build Coastguard Worker } 20*288bf522SAndroid Build Coastguard Worker 21*288bf522SAndroid Build Coastguard Worker sourceSets { 22*288bf522SAndroid Build Coastguard Worker main.java.srcDirs += '../../../app_api/java' 23*288bf522SAndroid Build Coastguard Worker } 24*288bf522SAndroid Build Coastguard Worker} 25*288bf522SAndroid Build Coastguard Worker 26*288bf522SAndroid Build Coastguard Workerdependencies { 27*288bf522SAndroid Build Coastguard Worker implementation fileTree(dir: 'libs', include: ['*.jar']) 28*288bf522SAndroid Build Coastguard Worker implementation 'com.android.support:appcompat-v7:27.1.1' 29*288bf522SAndroid Build Coastguard Worker implementation 'com.android.support.constraint:constraint-layout:1.1.3' 30*288bf522SAndroid Build Coastguard Worker testImplementation 'junit:junit:4.12' 31*288bf522SAndroid Build Coastguard Worker androidTestImplementation 'com.android.support.test:runner:1.0.2' 32*288bf522SAndroid Build Coastguard Worker androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 33*288bf522SAndroid Build Coastguard Worker} 34