Skip to content

Commit

Permalink
升级版本
Browse files Browse the repository at this point in the history
  • Loading branch information
hss01248 committed Jan 27, 2022
1 parent 03dad7f commit 754ae91
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ buildscript {
apply from:'remote3.gradle'
apply from:'remote_booster.gradle'
apply from: 'deps/depsLastestChecker.gradle'
apply from: 'deps/uploadAllTask.gradle'
/*apply from: 'deps/uploadAllTask.gradle'
ext {
// 快照版需要在版本号后面加-SNAPSHOT
//groupId='com.xxx.yyy.mylib'
groupIdPreffix='com.github.hss01248.flipperUtil'
groupId='com.github.hss01248.flipperUtil'
versionCode = '2.0.0.00'
isPublisToLocal=true
}
}*/

repositories {
maven {
Expand Down
11 changes: 7 additions & 4 deletions remote2_forRN.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ if(isLocal()){
flippernoop = project(':flipper-no-op')

}else {
flipper = 'com.github.hss01248.flipperUtil:flipper:1.3.4'
flippernoop = 'com.github.hss01248.flipperUtil:flipper-no-op:1.3.4'
flipper = 'com.github.hss01248.flipperUtil:flipper:1.3.7'
flippernoop = 'com.github.hss01248.flipperUtil:flipper-no-op:1.3.7'
}

gradle.addBuildListener(new BuildListener() {
Expand Down Expand Up @@ -145,9 +145,12 @@ gradle.addProjectEvaluationListener(new ProjectEvaluationListener() {
implementation (flipper){
exclude group: 'com.facebook.fbjni', module: 'fbjni'
}
api ('com.github.hss01248.flipperUtil:network:1.2.6'){
exclude group: 'com.facebook.fbjni', module: 'fbjni'
if(!isLocal()){
api ('com.github.hss01248.flipperUtil:network:1.3.7'){
exclude group: 'com.facebook.fbjni', module: 'fbjni'
}
}

}
if(!isTest()){
project.dependencies {
Expand Down
6 changes: 3 additions & 3 deletions remote3.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ if(isLocal()){
flippernoop = project(':flipper-no-op')

}else {
flipper = 'com.github.hss01248.flipperUtil:flipper:1.3.4'
dokit = 'com.github.hss01248.flipperUtil:dokit:1.3.4'
flippernoop = 'com.github.hss01248.flipperUtil:flipper-no-op:1.3.4'
flipper = 'com.github.hss01248.flipperUtil:flipper:1.3.7'
dokit = 'com.github.hss01248.flipperUtil:dokit:1.3.7'
flippernoop = 'com.github.hss01248.flipperUtil:flipper-no-op:1.3.7'
}

gradle.addBuildListener(new BuildListener() {
Expand Down

0 comments on commit 754ae91

Please sign in to comment.