diff --git a/app/build.gradle b/app/build.gradle index 695950c0f..32d4b803b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -119,6 +119,9 @@ android { abortOnError false checkReleaseBuilds false } + aaptOptions { + noCompress 'aar' + } } configurations.all { @@ -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' @@ -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' @@ -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' diff --git a/app/foss/release/app-foss-release.aab b/app/foss/release/app-foss-release.aab new file mode 100644 index 000000000..113f5f091 Binary files /dev/null and b/app/foss/release/app-foss-release.aab differ diff --git a/app/libs/bubbleseekbar-3.17.aar b/app/libs/bubbleseekbar-3.17.aar new file mode 100644 index 000000000..deb66d6a8 Binary files /dev/null and b/app/libs/bubbleseekbar-3.17.aar differ diff --git a/app/libs/commons-1.2.0.aar b/app/libs/commons-1.2.0.aar new file mode 100644 index 000000000..6c0a4ace0 Binary files /dev/null and b/app/libs/commons-1.2.0.aar differ diff --git a/app/libs/compressor-2.1.0.aar b/app/libs/compressor-2.1.0.aar new file mode 100644 index 000000000..97912430f Binary files /dev/null and b/app/libs/compressor-2.1.0.aar differ diff --git a/app/libs/flexbox-1.0.0.aar b/app/libs/flexbox-1.0.0.aar new file mode 100644 index 000000000..9a6ef6e6d Binary files /dev/null and b/app/libs/flexbox-1.0.0.aar differ diff --git a/app/libs/glide-transformations-4.0.0.aar b/app/libs/glide-transformations-4.0.0.aar new file mode 100644 index 000000000..ad5010e91 Binary files /dev/null and b/app/libs/glide-transformations-4.0.0.aar differ diff --git a/app/libs/gpuimage-2.0.3.aar b/app/libs/gpuimage-2.0.3.aar new file mode 100644 index 000000000..23d1dfcaf Binary files /dev/null and b/app/libs/gpuimage-2.0.3.aar differ diff --git a/app/libs/viewpagerdotsindicator-4.0.aar b/app/libs/viewpagerdotsindicator-4.0.aar new file mode 100644 index 000000000..13113ec5b Binary files /dev/null and b/app/libs/viewpagerdotsindicator-4.0.aar differ diff --git a/build.gradle b/build.gradle index 401526278..6863ed4f8 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,10 @@ buildscript { repositories { google() - jcenter() + mavenCentral() + flatDir { + dirs 'libs' + } } dependencies { @@ -17,8 +20,11 @@ buildscript { allprojects { repositories { google() - jcenter() + mavenCentral() maven { url "https://jitpack.io" } + flatDir { + dirs 'libs' + } } }