[android][3party] FB SDK is now synced with main build properties file

This commit is contained in:
Alex Zolotarev 2014-10-23 06:37:04 +03:00 committed by Alex Zolotarev
parent f267fc854d
commit 1dbea0b9fa
2 changed files with 5 additions and 8 deletions

View file

@ -6,12 +6,13 @@ dependencies {
}
android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
// properties are taken from the root android folder of the MAPS.ME project
compileSdkVersion Integer.parseInt(propTargetSdkVersion)
buildToolsVersion propBuildToolsVersion
defaultConfig {
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
minSdkVersion Integer.parseInt(propMinSdkVersion)
targetSdkVersion Integer.parseInt(propTargetSdkVersion)
}
lintOptions {

View file

@ -1,4 +0,0 @@
ANDROID_BUILD_MIN_SDK_VERSION=9
ANDROID_BUILD_TARGET_SDK_VERSION=20
ANDROID_BUILD_TOOLS_VERSION=20.0.0
ANDROID_BUILD_SDK_VERSION=20