1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2024-12-23 15:48:17 +01:00
SubwayTooter-Android-App/emoji/build.gradle
tateisu b2e09f2b24 change codes from .java to .kt, also many codes refactored.
emoji data is moved to its own modlule.
2018-01-09 13:43:05 +09:00

35 lines
881 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
// testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.0.2'
// 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'
}