summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2016-11-09 19:43:57 -0800
committerMaurice Lam <yukl@google.com>2016-11-17 21:10:58 +0000
commit56b51cc0f156ee6f95d039076d098e411c89a797 (patch)
tree718b3df258894048597f42d67ae7579c19ac6a2b /tools
parent0557890500241f8e997d0d9d91538d52da1ee8bf (diff)
downloadsetupwizard-56b51cc0f156ee6f95d039076d098e411c89a797.tar.gz
[SuwLib] Use prebuilt support lib
Use prebuilt support lib in the internal maven repo rather than building them from source. Test: Existing tests pass (./gradlew connectedAndroidTest) Bug: 32782973 Change-Id: I7e3d86074bfcff9062f8f3f7acf2f5f98055ba49
Diffstat (limited to 'tools')
-rw-r--r--tools/gradle/settings.gradle14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/gradle/settings.gradle b/tools/gradle/settings.gradle
index 8b24c8f..c01d43a 100644
--- a/tools/gradle/settings.gradle
+++ b/tools/gradle/settings.gradle
@@ -1,17 +1,3 @@
include(':setup-wizard-lib')
project(':setup-wizard-lib').projectDir = new File(rootDir, 'frameworks/opt/setupwizard/library')
project(':setup-wizard-lib').buildFileName = 'self.gradle'
-
-File supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/linux/platforms/android-22/support")
-if (!supportLibsRoot.exists()) {
- supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/darwin/platforms/android-22/support")
-}
-
-include(':support-v4')
-project(':support-v4').projectDir = new File(supportLibsRoot, 'v4')
-
-include(':support-appcompat-v7')
-project(':support-appcompat-v7').projectDir = new File(supportLibsRoot, 'appcompat')
-
-include(':support-recyclerview-v7')
-project(':support-recyclerview-v7').projectDir = new File(supportLibsRoot, 'recyclerview')