Skip to content

Commit

Permalink
Removed remote debug and snapshot compile options
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeorse committed Jan 26, 2016
1 parent 4cbf54d commit 01e6574
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-release'
}
ivy {
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-snapshot'
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-release'
}
}
}
Expand Down
11 changes: 2 additions & 9 deletions collect_app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ android {
minifyEnabled(minify)
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
snapshot {
// Build type for snapshots
}
debug {
testCoverageEnabled(testCoverage) // Allows AndroidTest JaCoCo reports to be generated
}
Expand Down Expand Up @@ -67,12 +64,8 @@ dependencies {
if (playServicesPath.exists() && gradle.useLocal) { // Local project is favoured
compile project(playServicesName)
} else {
releaseCompile(group: groupId, name: playServicesArtifactName,
version: playServicesRelease, ext: 'aar')
snapshotCompile(group: groupId, name: playServicesArtifactName,
version: playServicesSnapshot, ext: 'aar')
debugCompile(group: groupId, name: playServicesArtifactName,
version: playServicesSnapshot, ext: 'aar')
compile(group: groupId, name: playServicesArtifactName,
version: (useLatestPlayServices ? latestVersion : playServicesSnapshot), ext: 'aar')
}

// Testing-only dependencies
Expand Down

0 comments on commit 01e6574

Please sign in to comment.