Skip to content

Commit

Permalink
Merge pull request #71 from getbouncer/awushensky/update_color_overri…
Browse files Browse the repository at this point in the history
…des_for_cardverify

Update color names
  • Loading branch information
awushensky authored Dec 16, 2019
2 parents 1ed60e9 + 7b8b3dc commit 48badcd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ We publish our library in the jcenter repository, so for most gradle configurati

```gradle
dependencies {
implementation 'com.getbouncer:cardscan-base:1.0.5117'
implementation 'com.getbouncer:cardscan:1.0.5117'
implementation 'com.getbouncer:cardscan-base:1.0.5118'
implementation 'com.getbouncer:cardscan:1.0.5118'
}
```

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 19
targetSdkVersion 28
versionCode 4015
versionName "1.0.5117"
versionName "1.0.5118"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

public class OverlayWhite extends Overlay {

int backgroundColorId = R.color.card_scan_white_background;
int cornerColorId = R.color.card_scan_gray;
int backgroundColorId = R.color.card_scan_overlay_colored_background;
int cornerColorId = R.color.card_scan_overlay_colored_corner_color;

public OverlayWhite(Context context, AttributeSet attrs) {
super(context, attrs);
Expand Down
4 changes: 2 additions & 2 deletions cardscan-base/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<resources>
<color name="card_scan_camera_background">#992F3542</color>
<color name="card_scan_corner_color">#4CD964</color>
<color name="card_scan_white_background">#ffffffff</color>
<color name="card_scan_gray">#88888888</color>
<color name="card_scan_overlay_colored_background">#ffffffff</color>
<color name="card_scan_overlay_colored_corner_color">#88888888</color>
</resources>
6 changes: 3 additions & 3 deletions cardscan/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

ext {
bintrayRepo = 'cardscan-android'
bintrayName = 'cardscan-android'
bintrayRepo = 'CardScan'
bintrayName = 'CardScan'
bintrayOrg = 'bouncerpaid'

publishedGroupId = 'com.getbouncer'
Expand Down Expand Up @@ -133,7 +133,7 @@ bintray {
pkg {
repo = bintrayRepo
name = bintrayName
userOrg = bintrayOrg
// userOrg = bintrayOrg
desc = libraryDescription
websiteUrl = siteUrl
vcsUrl = gitUrl
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
version=1.0.5117
version=1.0.5118

0 comments on commit 48badcd

Please sign in to comment.