Skip to content

Commit 4259218

Browse files
authored
actions: less gradle dependencies is more (fixes #8927) (#8905)
1 parent b1a1c96 commit 4259218

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

app/build.gradle

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
applicationId "org.ole.planet.myplanet"
1010
minSdk = 26
1111
targetSdk = 36
12-
versionCode = 3679
13-
versionName = "0.36.79"
12+
versionCode = 3680
13+
versionName = "0.36.80"
1414
ndkVersion = '26.3.11579264'
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
vectorDrawables.useSupportLibrary = true
@@ -113,8 +113,6 @@ android {
113113
def planetEmbakasiClonePin = project.findProperty('PLANET_EMBAKASI_CLONE_PIN') ?: ""
114114
def planetCambridgeUrl = project.findProperty('PLANET_CAMBRIDGE_URL') ?: ""
115115
def planetCambridgePin = project.findProperty('PLANET_CAMBRIDGE_PIN') ?: ""
116-
//def planetEgdirbmacUrl = project.findProperty('PLANET_EGDIRBMAC_URL') ?: ""
117-
//def planetEgdirbmacPin = project.findProperty('PLANET_EGDIRBMAC_PIN') ?: ""
118116

119117
buildTypes.each {
120118
it.buildConfigField 'String', 'PLANET_LEARNING_URL', "\"$planetLearningUrl\""
@@ -145,8 +143,6 @@ android {
145143
it.buildConfigField 'String', 'PLANET_EMBAKASI_CLONE_PIN', "\"${planetEmbakasiClonePin}\""
146144
it.buildConfigField 'String', 'PLANET_CAMBRIDGE_URL', "\"${planetCambridgeUrl}\""
147145
it.buildConfigField 'String', 'PLANET_CAMBRIDGE_PIN', "\"${planetCambridgePin}\""
148-
//it.buildConfigField 'String', 'PLANET_EGDIRBMAC_URL', "\"${planetEgdirbmacUrl}\""
149-
//it.buildConfigField 'String', 'PLANET_EGDIRBMAC_PIN', "\"${planetEgdirbmacPin}\""
150146
}
151147
}
152148

@@ -197,8 +193,8 @@ dependencies {
197193
implementation 'com.github.clans:fab:1.6.4'
198194
implementation 'com.applandeo:material-calendar-view:1.9.2'
199195
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
200-
implementation 'com.borax12.materialdaterangepicker:library:2.0'
201196
implementation 'com.nex3z:toggle-button-group:1.2.3'
197+
implementation('com.mikepenz:materialdrawer:6.1.1@aar') { transitive = true}
202198
implementation('com.opencsv:opencsv:5.12.0') {
203199
exclude group: 'commons-logging', module: 'commons-logging'
204200
}
@@ -212,14 +208,6 @@ dependencies {
212208
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
213209
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.29'
214210

215-
implementation 'com.mikepenz:google-material-typeface:3.0.1.1.original@aar'
216-
implementation 'com.mikepenz:fontawesome-typeface:5.3.1.1@aar'
217-
implementation 'com.mikepenz:octicons-typeface:3.2.0.5@aar'
218-
implementation 'com.mikepenz:itemanimators:1.1.0@aar'
219-
implementation 'com.mikepenz:crossfader:1.6.0@aar'
220-
implementation 'com.mikepenz:crossfadedrawerlayout:1.1.0@aar'
221-
implementation('com.mikepenz:materialdrawer:6.1.1@aar') { transitive = true}
222-
223211
def camera_version = "1.4.2"
224212
implementation "androidx.camera:camera-core:$camera_version"
225213
implementation "androidx.camera:camera-camera2:$camera_version"

0 commit comments

Comments
 (0)