update dependency

This commit is contained in:
tateisu 2019-09-13 00:13:00 +09:00
parent dbfdcafca7
commit 2cb9a7ab07
5 changed files with 19 additions and 16 deletions

View File

@ -29,8 +29,8 @@ repositories {
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
api project(':apng')
// 'api'

View File

@ -97,12 +97,19 @@ dependencies {
implementation project(':apng_android')
implementation "androidx.appcompat:appcompat:$appcompat_version"
// implementation "androidx.legacy:legacy-support-v4:$androidx_version"
// implementation "androidx.legacy:legacy-support-v13:$androidx_version"
// DrawerLayout
implementation "androidx.drawerlayout:drawerlayout:1.1.0-alpha03"
// NavigationView
implementation "com.google.android.material:material:1.1.0-alpha10"
// PreferenceManager
implementation "androidx.preference:preference-ktx:1.1.0"
implementation "androidx.browser:browser:$androidx_version"
implementation "com.google.android.material:material:$androidx_version"
// CustomTabs
implementation "androidx.browser:browser:1.0.0"
kapt 'androidx.annotation:annotation:1.1.0'
// https://firebase.google.com/support/release-notes/android

View File

@ -10,7 +10,6 @@ import android.widget.ListView
import android.widget.TextView
import androidx.core.view.GravityCompat
import androidx.drawerlayout.widget.DrawerLayout
import com.google.android.material.navigation.NavigationView
import jp.juggler.subwaytooter.action.Action_Account
import jp.juggler.subwaytooter.action.Action_App
import jp.juggler.subwaytooter.table.SavedAccount
@ -20,7 +19,7 @@ import org.jetbrains.anko.backgroundColor
class SideMenuAdapter(
val activity : ActMain,
navigationView : NavigationView,
navigationView : ViewGroup,
private val drawer : DrawerLayout
) : BaseAdapter() {

View File

@ -2,11 +2,10 @@ buildscript {
ext.min_sdk_version = 21
ext.target_sdk_version = 29
ext.androidx_version= '1.0.0'
ext.appcompat_version='1.1.0'
ext.kotlin_version = '1.3.50'
ext.kotlinx_coroutines_version = '1.3.0'
ext.kotlinx_coroutines_version = '1.3.1'
ext.anko_version='0.10.8'
repositories {
@ -18,10 +17,8 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.google.gms:google-services:4.2.0'
// com.google.gms:google-services:4.3.0 4.3.1
// API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
//
// com.google.gms:google-services:4.3.0 4.3.1
// API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// kotlin 1.3.0 IDEがindex作成でエラーを繰り返し出すようになるので様子見する

View File

@ -36,8 +36,8 @@ dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version"