Skip to content

Commit

Permalink
actions: smoother build (fixes #3780) (fixes #3778) (#3792)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
ewhang5 and dogi authored Jul 10, 2024
1 parent 9f2da9c commit 41e8059
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "org.ole.planet.myplanet"
minSdkVersion 21
targetSdkVersion 34
versionCode 1665
versionName "0.16.65"
versionCode 1666
versionName "0.16.66"
ndkVersion '21.3.6528147'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down Expand Up @@ -92,7 +92,9 @@ repositories {

dependencies {
testImplementation 'junit:junit:4.13.2'
implementation project(':library')
implementation(project(':library')) {
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
Expand Down Expand Up @@ -125,7 +127,9 @@ dependencies {
implementation 'com.nex3z:toggle-button-group:1.2.3'
implementation 'com.sa90.materialarcmenu:library:2.0.0'
implementation 'com.caverock:androidsvg-aar:1.4'
implementation 'com.opencsv:opencsv:5.9'
implementation('com.opencsv:opencsv:5.9') {
exclude group: 'commons-logging', module: 'commons-logging'
}

implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'de.rtner:PBKDF2:1.1.4'
Expand Down

0 comments on commit 41e8059

Please sign in to comment.