1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-28 01:29:23 +01:00

33 lines
801 B
Groovy
Raw Normal View History

2017-12-22 22:10:28 +09:00
apply plugin: 'com.android.library'
android {
2018-09-12 14:55:15 +09:00
compileSdkVersion target_sdk_version
2017-12-22 22:10:28 +09:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2017-12-22 22:10:28 +09:00
defaultConfig {
2018-09-12 14:55:15 +09:00
targetSdkVersion target_sdk_version
minSdkVersion min_sdk_version
2017-12-22 22:10:28 +09:00
}
2018-09-12 14:55:15 +09:00
2017-12-22 22:10:28 +09:00
lintOptions {
abortOnError false
}
2018-09-12 14:55:15 +09:00
resourcePrefix "cpv_"
2017-12-22 22:10:28 +09:00
}
dependencies {
2019-02-15 10:51:22 +09:00
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation 'com.google.android:flexbox:2.0.1'
2017-12-22 22:10:28 +09:00
}
//apply plugin: 'com.getkeepsafe.dexcount'
//apply from: 'https://raw.githubusercontent.com/jaredrummler/android-artifact-push/master/artifactory/publication.gradle'
//apply from: 'https://raw.githubusercontent.com/jaredrummler/android-artifact-push/master/maven/gradle-mvn-push.gradle'