mirror of
https://github.com/tateisu/SubwayTooter
synced 2024-12-28 18:00:48 +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の仕様にあわせて変更。失われた機能もあるんだよ…
26 lines
549 B
Groovy
26 lines
549 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion '26.0.1'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'commons-io:commons-io:2.4'
|
|
}
|