-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from clover/release/p1.4.1
Release 1.4.1
- Loading branch information
Showing
191 changed files
with
7,961 additions
and
3,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,50 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
/* | ||
Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
Add common repos here | ||
*/ | ||
|
||
|
||
|
||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
//jcenter() | ||
} | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
jcenter() | ||
} | ||
|
||
def mavenPlugin = "com.github.dcendents:android-maven-gradle-plugin:1.5" | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.0' | ||
classpath mavenPlugin | ||
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.5.4' | ||
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.10.0' | ||
} | ||
} | ||
|
||
|
||
|
||
allprojects { | ||
apply plugin: 'com.jfrog.artifactory' | ||
apply plugin: 'maven-publish' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
google() | ||
jcenter() | ||
} | ||
} | ||
|
||
subprojects { | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
google() | ||
jcenter() | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...-pay-android-connector/src/main/java/com/clover/remote/client/CloverConnectorFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.clover.remote.client; | ||
|
||
/** | ||
* Created by connor on 10/19/17. | ||
*/ | ||
public class CloverConnectorFactory { | ||
|
||
public static ICloverConnector createICloverConnector(CloverDeviceConfiguration config) { | ||
|
||
return new CloverConnector(config); | ||
} | ||
} |
Oops, something went wrong.