mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
Revert irrelevant changes on build.gradle
This commit is contained in:
parent
82715047c0
commit
222b43892c
1 changed files with 11 additions and 5 deletions
|
|
@ -19,14 +19,18 @@ dependencies {
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
implementation 'com.github.nicolas-raoul:Quadtree:ac16ea8035bf07'
|
implementation 'com.github.nicolas-raoul:Quadtree:ac16ea8035bf07'
|
||||||
|
implementation 'com.google.code.gson:gson:2.8.5'
|
||||||
implementation 'in.yuvi:http.fluent:1.3'
|
implementation 'in.yuvi:http.fluent:1.3'
|
||||||
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
|
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
|
||||||
implementation 'com.squareup.okio:okio:1.15.0'
|
implementation 'com.squareup.okio:okio:1.15.0'
|
||||||
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
||||||
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.3'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.1.1'
|
implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.1.1'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.1.1'
|
implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.1.1'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.1.1'
|
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.1.1'
|
||||||
implementation 'com.facebook.fresco:fresco:1.13.0'
|
implementation 'com.facebook.fresco:fresco:1.13.0'
|
||||||
|
implementation 'com.drewnoakes:metadata-extractor:2.11.0'
|
||||||
implementation 'com.dmitrybrant:wikimedia-android-data-client:0.0.18'
|
implementation 'com.dmitrybrant:wikimedia-android-data-client:0.0.18'
|
||||||
implementation 'org.apache.commons:commons-lang3:3.8.1'
|
implementation 'org.apache.commons:commons-lang3:3.8.1'
|
||||||
|
|
||||||
|
|
@ -45,12 +49,14 @@ dependencies {
|
||||||
// Logging
|
// Logging
|
||||||
implementation 'ch.acra:acra-dialog:5.3.0'
|
implementation 'ch.acra:acra-dialog:5.3.0'
|
||||||
implementation 'ch.acra:acra-mail:5.3.0'
|
implementation 'ch.acra:acra-mail:5.3.0'
|
||||||
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
||||||
implementation 'org.slf4j:slf4j-api:1.7.25'
|
implementation 'org.slf4j:slf4j-api:1.7.25'
|
||||||
api('com.github.tony19:logback-android-classic:1.1.1-6') {
|
api('com.github.tony19:logback-android-classic:1.1.1-6') {
|
||||||
exclude group: 'com.google.android', module: 'android'
|
exclude group: 'com.google.android', module: 'android'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dependency injector
|
// Dependency injector
|
||||||
|
implementation "com.google.dagger:dagger:$DAGGER_VERSION"
|
||||||
implementation "com.google.dagger:dagger-android-support:$DAGGER_VERSION"
|
implementation "com.google.dagger:dagger-android-support:$DAGGER_VERSION"
|
||||||
kapt "com.google.dagger:dagger-android-processor:$DAGGER_VERSION"
|
kapt "com.google.dagger:dagger-android-processor:$DAGGER_VERSION"
|
||||||
kapt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
|
kapt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
|
||||||
|
|
@ -89,10 +95,6 @@ dependencies {
|
||||||
implementation "androidx.cardview:cardview:1.0.0"
|
implementation "androidx.cardview:cardview:1.0.0"
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||||||
implementation "androidx.exifinterface:exifinterface:1.0.0"
|
implementation "androidx.exifinterface:exifinterface:1.0.0"
|
||||||
|
|
||||||
//swipe_layout
|
|
||||||
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
|
|
||||||
|
|
||||||
//metadata extractor
|
//metadata extractor
|
||||||
implementation 'com.drewnoakes:metadata-extractor:2.11.0'
|
implementation 'com.drewnoakes:metadata-extractor:2.11.0'
|
||||||
}
|
}
|
||||||
|
|
@ -118,6 +120,7 @@ android {
|
||||||
|
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
exclude 'META-INF/androidx.*'
|
exclude 'META-INF/androidx.*'
|
||||||
exclude 'META-INF/proguard/androidx-annotations.pro'
|
exclude 'META-INF/proguard/androidx-annotations.pro'
|
||||||
|
|
@ -135,6 +138,7 @@ android {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
// use kotlin only in tests (for now)
|
// use kotlin only in tests (for now)
|
||||||
test.java.srcDirs += 'src/test/kotlin'
|
test.java.srcDirs += 'src/test/kotlin'
|
||||||
|
|
||||||
// use main assets and resources in test
|
// use main assets and resources in test
|
||||||
test.assets.srcDirs += 'src/main/assets'
|
test.assets.srcDirs += 'src/main/assets'
|
||||||
test.resources.srcDirs += 'src/main/resoures'
|
test.resources.srcDirs += 'src/main/resoures'
|
||||||
|
|
@ -206,6 +210,7 @@ android {
|
||||||
|
|
||||||
dimension 'tier'
|
dimension 'tier'
|
||||||
}
|
}
|
||||||
|
|
||||||
beta {
|
beta {
|
||||||
applicationId 'fr.free.nrw.commons.beta'
|
applicationId 'fr.free.nrw.commons.beta'
|
||||||
|
|
||||||
|
|
@ -251,6 +256,7 @@ android {
|
||||||
|
|
||||||
buildToolsVersion buildToolsVersion
|
buildToolsVersion buildToolsVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isRunningOnTravisAndIsNotPRBuild) {
|
if(isRunningOnTravisAndIsNotPRBuild) {
|
||||||
play {
|
play {
|
||||||
track = "alpha"
|
track = "alpha"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue