1apply plugin: 'com.android.application' 2 3apply from: 'profiling.gradle' 4 5android { 6 compileSdkVersion 25 7 buildToolsVersion '27.0.3' 8 defaultConfig { 9 applicationId "com.example.simpleperf.simpleperfexamplepurejava" 10 minSdkVersion 15 11 targetSdkVersion 25 12 versionCode 1 13 versionName "1.0" 14 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 } 16 buildTypes { 17 release { 18 minifyEnabled false 19 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 20 } 21 } 22} 23 24dependencies { 25 implementation fileTree(dir: 'libs', include: ['*.jar']) 26 androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', { 27 exclude group: 'com.android.support', module: 'support-annotations' 28 }) 29 implementation 'com.android.support:appcompat-v7:25.3.1' 30 implementation 'com.android.support.constraint:constraint-layout:1.0.2' 31 testImplementation 'junit:junit:4.12' 32} 33