Skip to content

Commit

Permalink
refactor: Removing jcenter dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjoongcho committed Oct 12, 2024
1 parent c24f62e commit 5d7c3a0
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 9 deletions.
19 changes: 12 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ android {
abortOnError false
checkReleaseBuilds false
}
aaptOptions {
noCompress 'aar'
}
}

configurations.all {
Expand Down Expand Up @@ -171,8 +174,8 @@ dependencies {
gmsProdImplementation 'com.google.http-client:google-http-client-gson:1.26.0'

// google components common
implementation (name: 'flexbox', group: 'com.google.android', version: '1.0.0', ext: 'aar')
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.google.android:flexbox:1.0.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.guava:guava:33.0.0-android'

Expand All @@ -185,10 +188,16 @@ dependencies {
implementation 'org.apache.poi:poi:3.13'

// AAFactory
implementation 'io.github.aafactory:commons:1.2.0'
// implementation 'io.github.aafactory:commons:1.2.0'
// implementation project(":aafactory-commons")

// etc.
implementation (name: 'bubbleseekbar', group: 'com.xw.repo', version: 3.17, ext: 'aar')
implementation (name: 'viewpagerdotsindicator', group: 'com.tbuonomo.andrui', version: 4.0, ext: 'aar')
implementation (name: 'glide-transformations', group: 'jp.wasabeef', version: '4.0.0', ext: 'aar')
implementation (name: 'gpuimage', group: 'jp.co.cyberagent.android', version: '2.0.3', ext: 'aar')
implementation (name: 'compressor', group: 'id.zelory', version: '2.1.0', ext: 'aar')
implementation (name: 'commons', group: 'io.github.aafactory', version: '1.2.0', ext: 'aar')
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.0.0'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
implementation 'com.github.chrisbanes:PhotoView:2.1.3'
Expand All @@ -198,14 +207,10 @@ dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
implementation 'com.github.ksoichiro:android-observablescrollview:1.5.2'
implementation 'com.roomorama:caldroid:3.0.1'
implementation 'com.xw.repo:bubbleseekbar:3.17'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:4.0'
implementation 'com.simplecityapps:recyclerview-fastscroll:2.0.1'
implementation 'org.jasypt:jasypt:1.9.2'
implementation 'jp.wasabeef:glide-transformations:4.0.0'
implementation 'jp.co.cyberagent.android:gpuimage:2.0.3'
implementation 'id.zelory:compressor:2.1.0'

implementation 'io.noties.markwon:core:4.6.2'
implementation 'io.noties.markwon:syntax-highlight:4.6.2'
implementation 'io.noties.markwon:ext-tables:4.6.2'
Expand Down
Binary file added app/foss/release/app-foss-release.aab
Binary file not shown.
Binary file added app/libs/bubbleseekbar-3.17.aar
Binary file not shown.
Binary file added app/libs/commons-1.2.0.aar
Binary file not shown.
Binary file added app/libs/compressor-2.1.0.aar
Binary file not shown.
Binary file added app/libs/flexbox-1.0.0.aar
Binary file not shown.
Binary file added app/libs/glide-transformations-4.0.0.aar
Binary file not shown.
Binary file added app/libs/gpuimage-2.0.3.aar
Binary file not shown.
Binary file added app/libs/viewpagerdotsindicator-4.0.aar
Binary file not shown.
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}
}

dependencies {
Expand All @@ -17,8 +20,11 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
flatDir {
dirs 'libs'
}
}
}

Expand Down

0 comments on commit 5d7c3a0

Please sign in to comment.