Skip to content

Commit

Permalink
更新配置文件
Browse files Browse the repository at this point in the history
  • Loading branch information
秋逸 committed Jul 18, 2018
1 parent 62d3a04 commit 985aec6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RxArcGisKit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
compileOnly 'com.esri.arcgisruntime:arcgis-android:100.3.0'
implementation project(':RxKit')
compileOnly project(':RxKit')
}
2 changes: 1 addition & 1 deletion RxCamera/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':RxKit')
compileOnly project(':RxKit')
implementation 'com.android.support:appcompat-v7:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
Expand Down
4 changes: 2 additions & 2 deletions RxFeature/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
compileOnly 'com.google.code.gson:gson:2.8.2'
//Zxing核心包
implementation 'com.google.zxing:core:3.3.0'
implementation project(':RxKit')
implementation project(':RxUI')
compileOnly project(':RxKit')
compileOnly project(':RxUI')
// implementation project(':RxCamera')
}
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ public void onClick(View v) {

//二维码生成方式一 推荐此方法
RxQRCode.builder(str).
backColor(getResources().getColor(R.color.white)).
codeColor(getResources().getColor(R.color.black)).
backColor(0xFFFFFFFF).
codeColor(0xFF000000).
codeSide(600).
into(mIvQrCode);

Expand Down Expand Up @@ -146,8 +146,8 @@ public void onClick(View v) {

//条形码生成方式一 推荐此方法
RxBarCode.builder(str1).
backColor(getResources().getColor(R.color.transparent)).
codeColor(getResources().getColor(R.color.black)).
backColor(0x00000000).
codeColor(0xFF000000).
codeWidth(1000).
codeHeight(300).
into(mIvBarCode);
Expand Down
File renamed without changes.

0 comments on commit 985aec6

Please sign in to comment.