36 lines
1.5 KiB
Groovy
36 lines
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
defaultConfig {
|
|
applicationId "com.example.android.pdfrendererbasic"
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.android.support:appcompat-v7:$rootProject.ext.supportLibVersion"
|
|
implementation "com.android.support:support-v4:$rootProject.ext.supportLibVersion"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.ext.kotlinVersion"
|
|
|
|
// Testing dependencies
|
|
androidTestImplementation "com.androidx.test.espresso:espresso-contrib:$rootProject.ext.espressoVersion"
|
|
androidTestImplementation "com.androidx.test.espresso:espresso-core:$rootProject.ext.espressoVersion"
|
|
androidTestCompile "com.android.support:support-annotations:$rootProject.ext.supportLibVersion"
|
|
androidTestCompile "com.android.support.test:runner:$rootProject.ext.supportTestVersion"
|
|
androidTestCompile "com.android.support.test:rules:$rootProject.ext.supportTestVersion"
|
|
testImplementation "junit:junit:$rootProject.ext.junitVersion"
|
|
}
|