SubwayTooter-Android-App/emoji/build.gradle

32 lines
897 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
2018-09-12 07:55:15 +02:00
compileSdkVersion target_sdk_version
defaultConfig {
2018-09-12 07:55:15 +02:00
targetSdkVersion target_sdk_version
minSdkVersion min_sdk_version
versionCode 1
versionName "1.0"
// 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'])
2019-02-15 02:51:22 +01:00
implementation "androidx.appcompat:appcompat:$appcompat_version"
// testImplementation 'junit:junit:4.12'
// androidTestImplementation 'com.android.support.test:runner:1.0.1'
// androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}