Skip to content

Commit

Permalink
删除rxhttp_next_version常量
Browse files Browse the repository at this point in the history
  • Loading branch information
liujingxing committed Jun 24, 2021
1 parent 00605f5 commit b6d80a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ dependencies {
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'io.reactivex.rxjava3:rxjava:3.0.13'

implementation "com.github.liujingxing.rxhttp:converter-fastjson:${rxhttp_version}"
implementation "com.github.liujingxing.rxhttp:converter-jackson:${rxhttp_version}"
implementation "com.github.liujingxing.rxhttp:converter-moshi:${rxhttp_version}"
implementation "com.github.liujingxing.rxhttp:converter-protobuf:${rxhttp_version}"
implementation "com.github.liujingxing.rxhttp:converter-simplexml:${rxhttp_version}"
// implementation "com.github.liujingxing.rxhttp:converter-fastjson:${rxhttp_version}"
// implementation "com.github.liujingxing.rxhttp:converter-jackson:${rxhttp_version}"
// implementation "com.github.liujingxing.rxhttp:converter-moshi:${rxhttp_version}"
// implementation "com.github.liujingxing.rxhttp:converter-protobuf:${rxhttp_version}"
// implementation "com.github.liujingxing.rxhttp:converter-simplexml:${rxhttp_version}"

// implementation project(':rxhttp-converter:converter-fastjson')
// implementation project(':rxhttp-converter:converter-simplexml')
// implementation project(':rxhttp-converter:converter-protobuf')
// implementation project(':rxhttp-converter:converter-moshi')
// implementation project(':rxhttp-converter:converter-jackson')
implementation project(':rxhttp-converter:converter-fastjson')
implementation project(':rxhttp-converter:converter-simplexml')
implementation project(':rxhttp-converter:converter-protobuf')
implementation project(':rxhttp-converter:converter-moshi')
implementation project(':rxhttp-converter:converter-jackson')

testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ org.gradle.jvmargs=-Xmx1536m

okhttp_version=4.9.1
rxlife_version=2.1.0
rxhttp_version=2.6.2
rxhttp_next_version=2.6.3
rxhttp_version=2.6.3

fastjson_version=1.2.76
jackson_version=2.12.3
Expand Down
2 changes: 1 addition & 1 deletion rxhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ compileKotlin {
task copyJavaTemplates(type: Copy) {
from 'src/main/java-templates'
into "$buildDir/generated/sources/java-templates/java/main"
expand('projectVersion': "${rxhttp_next_version}")
expand('projectVersion': "${rxhttp_version}")
filteringCharset = 'UTF-8'
}

Expand Down

0 comments on commit b6d80a7

Please sign in to comment.