1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 08:38:13 -07:00

Fix the build file for the examples.

This commit is contained in:
Cedric Beust 2015-11-05 17:35:59 -08:00
parent e1122bb8e3
commit 0bbf3a1577

View file

@ -17,11 +17,12 @@ val p = javaProject {
dependencies { dependencies {
compile(file("app/libs/android-async-http-1.4.3.jar"), 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 { android {
applicationId = name compileSdkVersion = "21"
buildToolsVersion = "21.1.3" applicationId = "codepath.apps.demointroandroid"
buildToolsVersion = "21.1.2"
} }
} }