2017-04-23 07:42:09 +02:00
|
|
|
import java.text.SimpleDateFormat
|
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-04 15:51:15 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-01-19 10:37:04 +01:00
|
|
|
// apply plugin: 'kotlin-android-extensions'
|
2017-04-20 18:23:59 +02:00
|
|
|
|
|
|
|
android {
|
2018-01-04 19:52:25 +01:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion '27.0.3'
|
2017-04-20 18:23:59 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "jp.juggler.subwaytooter"
|
|
|
|
minSdkVersion 21
|
2018-01-04 19:52:25 +01:00
|
|
|
targetSdkVersion 27
|
2018-01-14 22:47:42 +01:00
|
|
|
|
2018-05-06 16:14:45 +02:00
|
|
|
versionCode 246
|
|
|
|
versionName "2.4.6"
|
2017-04-20 18:23:59 +02:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2018-01-04 19:52:25 +01:00
|
|
|
|
|
|
|
// https://stackoverflow.com/questions/47791227/java-lang-illegalstateexception-dex-archives-setting-dex-extension-only-for
|
|
|
|
multiDexEnabled true
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
2017-04-25 16:47:27 +02:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2018-01-13 07:52:07 +01:00
|
|
|
minifyEnabled false
|
|
|
|
shrinkResources false
|
2017-04-20 18:23:59 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2017-04-25 16:47:27 +02:00
|
|
|
|
2017-11-04 15:51:15 +01:00
|
|
|
// Specifies comma-separated list of flavor dimensions.
|
|
|
|
flavorDimensions "rcOrDev"
|
|
|
|
|
2017-04-23 07:42:09 +02:00
|
|
|
productFlavors {
|
|
|
|
rc {
|
2017-11-04 15:51:15 +01:00
|
|
|
dimension "rcOrDev"
|
2017-04-23 07:42:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-04 15:51:15 +01:00
|
|
|
dexOptions {
|
|
|
|
jumboMode = true
|
|
|
|
}
|
|
|
|
|
2017-04-23 07:42:09 +02:00
|
|
|
// Generate Signed APK のファイル名を変更
|
2017-11-04 15:51:15 +01:00
|
|
|
android.applicationVariants.all { variant ->
|
2017-04-23 07:42:09 +02:00
|
|
|
if (variant.buildType.name == "release") {
|
2017-11-04 15:51:15 +01:00
|
|
|
variant.outputs.all {
|
|
|
|
// Rename APK
|
|
|
|
def versionCode = defaultConfig.versionCode
|
|
|
|
def versionName = defaultConfig.versionName
|
|
|
|
def flavor = variant.flavorName
|
|
|
|
def date = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date())
|
|
|
|
outputFileName = "../../SubwayTooter-${flavor}-${versionCode}-${versionName}-${date}.apk"
|
2017-04-23 07:42:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-27 05:07:40 +02:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
2017-04-20 18:23:59 +02:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-12-11 22:18:17 +01:00
|
|
|
|
2018-01-28 20:03:04 +01:00
|
|
|
implementation project(':exif')
|
|
|
|
implementation project(':colorpicker')
|
|
|
|
implementation project(':emoji')
|
|
|
|
implementation project(':apng_android')
|
2018-01-04 19:52:25 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation "com.android.support:support-v4:$asl_version"
|
|
|
|
implementation "com.android.support:appcompat-v7:$asl_version"
|
|
|
|
implementation "com.android.support:design:$asl_version"
|
|
|
|
implementation "com.android.support:customtabs:$asl_version"
|
|
|
|
implementation "com.android.support:support-v13:$asl_version"
|
2017-12-11 22:18:17 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation "com.google.firebase:firebase-core:$firebase_version"
|
|
|
|
implementation "com.google.firebase:firebase-messaging:$firebase_version"
|
2017-08-24 13:44:06 +02:00
|
|
|
|
2018-03-27 05:07:40 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
2018-01-27 12:00:44 +01:00
|
|
|
// compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.21.2'
|
2018-01-12 10:01:25 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
// Anko Layouts
|
|
|
|
implementation "org.jetbrains.anko:anko:$anko_version"
|
|
|
|
implementation "org.jetbrains.anko:anko-sdk25:$anko_version" // sdk15, sdk19, sdk21, sdk23 are also available
|
|
|
|
implementation "org.jetbrains.anko:anko-appcompat-v7:$anko_version"
|
2017-05-19 01:20:42 +02:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
// Coroutine listeners for Anko Layouts
|
|
|
|
//implementation "org.jetbrains.anko:anko-sdk25-coroutines:$anko_version"
|
|
|
|
//implementation "org.jetbrains.anko:anko-appcompat-v7-coroutines:$anko_version"
|
2017-12-20 21:55:51 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
testImplementation 'junit:junit:4.12' // しばらくはkotlin-testとjunitを併用
|
2017-12-22 04:12:32 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver:3.10.0'
|
|
|
|
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.10.0'
|
2017-05-26 05:48:06 +02:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.6.1'
|
|
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.6.1'
|
|
|
|
implementation 'com.github.bumptech.glide:annotations:4.6.1'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
|
2017-07-26 13:40:55 +02:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
|
2017-09-25 17:10:05 +02:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.github.woxthebox:draglistview:1.5.4'
|
2017-12-21 12:33:35 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.github.omadahealth:swipy:1.2.3@aar'
|
2017-12-21 12:33:35 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.github.kenglxn.QRGen:android:2.4.0'
|
2018-01-14 22:47:42 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'commons-io:commons-io:2.6'
|
2018-01-14 22:47:42 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'org.hjson:hjson:3.0.0'
|
|
|
|
|
|
|
|
implementation 'com.google.android:flexbox:0.3.2'
|
|
|
|
|
|
|
|
implementation 'com.astuetz:pagerslidingtabstrip:1.0.1'
|
2018-01-17 18:39:16 +01:00
|
|
|
|
2018-04-05 22:47:25 +02:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.7.3'
|
2018-01-17 18:39:16 +01:00
|
|
|
|
2018-03-27 05:07:40 +02:00
|
|
|
// implementation 'com.simplecityapps:recyclerview-fastscroll:1.0.16'
|
2018-01-21 13:46:36 +01:00
|
|
|
|
|
|
|
implementation 'me.drakeet.support:toastcompat:1.0.2'
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
2017-05-24 11:20:56 +02:00
|
|
|
|
2017-11-04 15:51:15 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2017-12-22 13:59:52 +01:00
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|