mirror of
https://github.com/tateisu/SubwayTooter
synced 2024-12-29 02:10:18 +01:00
db59e34553
- 公開範囲を示すアイコンの隣にNSFWを示すアイコンを追加 - 公開範囲を示すアイコンは公開範囲がpublicなら表示しない - ビルド環境の更新。Android Studio 2.3.3, compileSdkVersion 26, targetSdkVersion 26, build-tools 26.0.1, Android support library 26.0.1 - 通知まわりをAndroid Oの仕様にあわせて変更。失われた機能もあるんだよ…
27 lines
695 B
Groovy
27 lines
695 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
|
classpath 'com.google.gms:google-services:3.0.0'
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven { url 'https://maven.google.com' }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|