Skip to content

Commit

Permalink
ver: upgrade lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
plateaukao committed Jun 1, 2022
1 parent b78c208 commit d38b3d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,10 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

def room_version = "2.3.0"
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.room:room-runtime:2.4.2"
implementation "androidx.room:room-ktx:2.4.2"
kapt 'org.xerial:sqlite-jdbc:3.36.0.2'
kapt "androidx.room:room-compiler:$room_version"
kapt "androidx.room:room-compiler:2.4.2"

implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1008,6 +1008,7 @@ open class BrowserActivity : ComponentActivity(), BrowserController, OnClickList
addRule(RelativeLayout.ALIGN_BOTTOM, R.id.main_content)
}
}
FabPosition.NotShow -> {}
}

ViewUnit.expandViewTouchArea(fabImageButtonNav, 20.dp(this))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ class TouchAreaViewController(
touchAreaPageDown = rootView.findViewById(R.id.touch_area_right_2)
touchAreaDragCustomize = rootView.findViewById(R.id.touch_area_right_drag)
}
TouchAreaType.LongLeftRight -> {}
}

with(touchAreaPageUp) {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.5.10'
ext.kotlin_version = '1.6.21'
repositories {
google()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
}
}

Expand Down

0 comments on commit d38b3d9

Please sign in to comment.