32 lines
1012 B
Groovy
Executable File
32 lines
1012 B
Groovy
Executable File
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId "com.hyperling.apps.infinitetimer"
|
|
minSdkVersion 15
|
|
targetSdkVersion 28
|
|
versionCode 7
|
|
versionName "1.06"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
// https://mvnrepository.com/artifact/com.android.support/appcompat-v7
|
|
implementation group: 'com.android.support', name: 'appcompat-v7', version: '28.0.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|