1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-27 17:19:24 +01:00

32 lines
898 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
2018-09-12 14:55:15 +09:00
compileSdkVersion target_sdk_version
defaultConfig {
2018-09-12 14:55:15 +09:00
targetSdkVersion target_sdk_version
minSdkVersion min_sdk_version
versionCode 1
versionName "1.0"
// testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
2019-02-15 12:17:31 +09:00
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2019-02-15 10:51:22 +09: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'
}