Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
leokwsw committed Oct 10, 2021
1 parent 45c41f9 commit e9b37e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.21"
ext.kotlin_version = "1.5.30"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
6 changes: 3 additions & 3 deletions pixel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'

implementation"androidx.constraintlayout:constraintlayout:2.1.0"
implementation"androidx.constraintlayout:constraintlayout:2.1.1"
implementation"androidx.legacy:legacy-support-v4:1.0.0"
implementation"androidx.recyclerview:recyclerview:1.2.1"
implementation"androidx.exifinterface:exifinterface:1.3.3"
Expand Down Expand Up @@ -77,8 +77,8 @@ if(file.exists()){
properties.load(project.rootProject.file('github.properties').newDataInputStream())

credentials {
username = "$user"
password = "$key"
username = "$properties.usr"
password = "$properties.key"
}
}
}
Expand Down

0 comments on commit e9b37e4

Please sign in to comment.