38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
apply plugin: 'com.android.application'
 | 
						|
 | 
						|
apply plugin: 'kotlin-android'
 | 
						|
 | 
						|
apply plugin: 'kotlin-android-extensions'
 | 
						|
 | 
						|
apply from: 'profiling.gradle'
 | 
						|
 | 
						|
android {
 | 
						|
    compileSdkVersion 25
 | 
						|
    buildToolsVersion '27.0.3'
 | 
						|
    defaultConfig {
 | 
						|
        applicationId "com.example.simpleperf.simpleperfexampleofkotlin"
 | 
						|
        minSdkVersion 15
 | 
						|
        targetSdkVersion 26
 | 
						|
        versionCode 1
 | 
						|
        versionName "1.0"
 | 
						|
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | 
						|
    }
 | 
						|
    buildTypes {
 | 
						|
        release {
 | 
						|
            minifyEnabled false
 | 
						|
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    implementation fileTree(dir: 'libs', include: ['*.jar'])
 | 
						|
    androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', {
 | 
						|
        exclude group: 'com.android.support', module: 'support-annotations'
 | 
						|
    })
 | 
						|
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
 | 
						|
    implementation 'com.android.support:appcompat-v7:25.4.0'
 | 
						|
    testImplementation 'junit:junit:4.12'
 | 
						|
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
 | 
						|
}
 |