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