Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Sep 10, 2024
1 parent d879536 commit 2f9ced7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ repositories {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.material:material:1.11.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'com.google.android.material:material:1.12.0-alpha03'
implementation 'com.github.skydoves:balloon:1.3.9'
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.github.skydoves:balloon:1.5.3'

implementation 'com.github.AppIntro:AppIntro:6.3.1'
implementation 'androidx.preference:preference-ktx:1.2.1'

implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2")
implementation("androidx.core:core-splashscreen:1.0.1")
}

Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class GraphFragment : Fragment(), View.OnClickListener {
* Required to dismiss old tooltips when a new was opened
*/
fun handleTooltipRight(context: Context, tooltip: String, view: View){
view.showAlignLeft(getTooltip(context, tooltip, ArrowOrientation.RIGHT).build())
view.showAlignLeft(getTooltip(context, tooltip, ArrowOrientation.END).build())
}


Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.9.21'
ext.kotlin_version = '2.0.20'
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }

}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.4'
classpath 'com.android.tools.build:gradle:8.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip

0 comments on commit 2f9ced7

Please sign in to comment.