This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.

32 lines
1012 B
Groovy
Raw Permalink Normal View History

2025-01-04 12:39:21 -07:00
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'
}