From 0bbf3a15770716f899dab2ae982b98a482e4dd50 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 5 Nov 2015 17:35:59 -0800 Subject: [PATCH] Fix the build file for the examples. --- examples/intro_android_demo/Build.kt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/intro_android_demo/Build.kt b/examples/intro_android_demo/Build.kt index 2cd04bddc..ad8da6a27 100644 --- a/examples/intro_android_demo/Build.kt +++ b/examples/intro_android_demo/Build.kt @@ -17,11 +17,12 @@ val p = javaProject { dependencies { compile(file("app/libs/android-async-http-1.4.3.jar"), - "com.android.support:support-v4:aar:23.0.1") + "com.android.support:support-v4:aar:21.0.3") } android { - applicationId = name - buildToolsVersion = "21.1.3" + compileSdkVersion = "21" + applicationId = "codepath.apps.demointroandroid" + buildToolsVersion = "21.1.2" } }