Skip to content

Commit

Permalink
Reordered dependencies a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Aug 17, 2023
1 parent 8e4b547 commit 27ee939
Showing 1 changed file with 25 additions and 17 deletions.
42 changes: 25 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,12 @@ ext {
}

dependencies {

// acra crash dump lib
implementation "ch.acra:acra-http:$acraVersion"
implementation "ch.acra:acra-dialog:$acraVersion"
// android support and other libraries

// android support
implementation "androidx.activity:activity:1.2.4"
implementation "androidx.fragment:fragment:1.3.6"
implementation "androidx.appcompat:appcompat:1.6.1"
Expand All @@ -609,22 +612,36 @@ dependencies {
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.viewpager:viewpager:1.1.0-alpha01"

//
implementation 'com.heinrichreimersoftware:android-issue-reporter:1.4'
implementation "com.nononsenseapps:filepicker:4.2.1"
implementation "oauth.signpost:signpost-core:$signpostVersion"
implementation 'se.akerfeldt:okhttp-signpost:1.1.0'
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$okHttpVersion"
//non-Android google
implementation 'com.google.protobuf:protobuf-java:3.12.2'
implementation "com.google.code.gson:gson:2.8.9"
implementation "com.google.protobuf:protobuf-java:$googleProtobufVersion"
implementation 'com.google.openlocationcode:openlocationcode:1.0.4'

// okhttp
implementation 'se.akerfeldt:okhttp-signpost:1.1.0'
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$okHttpVersion"

// other 3rd party dependencies
implementation 'com.heinrichreimersoftware:android-issue-reporter:1.4'
implementation "com.nononsenseapps:filepicker:4.2.1"
implementation "oauth.signpost:signpost-core:$signpostVersion"
implementation ('com.faendir.rhino:rhino-android:1.6.0') { exclude group: 'org.mozilla' }
implementation "org.mozilla:rhino:1.7.13"
implementation "com.mapbox.mapboxsdk:mapbox-sdk-geojson:$mapboxVersion"
implementation "com.mapbox.mapboxsdk:mapbox-sdk-turf:$mapboxVersion"
implementation 'com.github.Kunzisoft:AndroidClearChroma:2.4'
implementation 'de.westnordost:countryboundaries:1.5'
implementation 'de.ruedigermoeller:fst:2.57'
implementation 'org.openstreetmap.osmosis:osmosis-osm-binary:0.48.3'
implementation 'com.zaxxer:SparseBitSet:1.2'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'io.michaelrocks:libphonenumber-android:8.12.39'
implementation 'io.noties.markwon:core:4.6.2'
implementation 'com.github.zedlabs:ElementHistoryDialog:1.0.7'
implementation 'com.caverock:androidsvg-aar:1.4'

implementation "ch.poole:PoParser:0.8.0"
implementation "ch.poole:OpeningHoursParser:0.27.0"
implementation "ch.poole:ConditionalRestrictionParser:0.3.3"
Expand All @@ -636,15 +653,6 @@ dependencies {
implementation 'ch.poole.android:sprites:0.0.4'
implementation 'ch.poole.android:indeterminate-checkbox:1.1.0@aar'
implementation 'ch.poole.misc:bentley-ottmann:0.1.1'
implementation 'de.westnordost:countryboundaries:1.5'
implementation 'de.ruedigermoeller:fst:2.57'
implementation 'org.openstreetmap.osmosis:osmosis-osm-binary:0.48.3'
implementation 'com.zaxxer:SparseBitSet:1.2'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'io.michaelrocks:libphonenumber-android:8.12.39'
implementation 'io.noties.markwon:core:4.6.2'
implementation 'com.github.zedlabs:ElementHistoryDialog:1.0.7'
implementation 'com.caverock:androidsvg-aar:1.4'

// for temp stuff during dev
// implementation(name:'alibrary', ext:'jar')
Expand Down

0 comments on commit 27ee939

Please sign in to comment.