Merge remote-tracking branch 'origin/master' into notification-service
[platform/upstream/iotivity.git] / android / android_api / base / build.gradle
1 /*\r
2  *******************************************************************\r
3  *\r
4  * Copyright 2015 Intel Corporation.\r
5  *\r
6  *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
7  *\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  *\r
12  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  *\r
20  *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
21  */\r
22 \r
23 apply plugin: 'com.android.library'\r
24 \r
25 android {\r
26     compileSdkVersion 21\r
27     buildToolsVersion "20.0.0"\r
28     archivesBaseName = "iotivity-base"\r
29 \r
30     libraryVariants.all { variant ->\r
31         variant.outputs.each { output ->\r
32             def outputFile = output.outputFile\r
33             if (outputFile != null && outputFile.name.endsWith('.aar')) {\r
34                 def fileName = "${archivesBaseName}-${TARGET_ARCH}-${RELEASE}.aar"\r
35                 output.outputFile = new File(outputFile.parent, fileName)\r
36             }\r
37         }\r
38     }\r
39 \r
40     defaultConfig {\r
41         minSdkVersion 21\r
42         targetSdkVersion 21\r
43         versionCode 1\r
44         versionName "1.2.0"\r
45         buildConfigField 'int', 'SECURED', SECURED\r
46         buildConfigField 'int', 'WITH_CLOUD', WITH_CLOUD\r
47         buildConfigField "int", 'WITH_MQ_PUB', WITH_MQ_PUB\r
48         buildConfigField "int", 'WITH_MQ_SUB', WITH_MQ_SUB\r
49         buildConfigField "int", 'WITH_MQ_BROKER', WITH_MQ_BROKER\r
50         buildConfigField "String", 'RD_MODE', "\"RD_MODE\""\r
51         buildConfigField "int", 'WITH_TRANSPORT_EDR', WITH_TRANSPORT_EDR\r
52         buildConfigField "int", 'WITH_TRANSPORT_BLE', WITH_TRANSPORT_BLE\r
53         buildConfigField "int", 'WITH_TRANSPORT_NFC', WITH_TRANSPORT_NFC\r
54     }\r
55     buildTypes {\r
56         release {\r
57             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\r
58         }\r
59     }\r
60 \r
61     lintOptions {\r
62         abortOnError false\r
63     }\r
64 \r
65     sourceSets {\r
66         main {\r
67             manifest.srcFile 'src/main/AndroidManifest.xml'\r
68             jniLibs.srcDir 'libs'\r
69             jni.srcDirs = [] //disable automatic ndk-build call\r
70             java{\r
71                 if (WITH_TRANSPORT_EDR == "0") {\r
72                     exclude "**/ca/CaBtPairingInterface.java"\r
73                     exclude "**/ca/CaEdrInterface.java"\r
74                     println 'excluded EDR interface'\r
75                     }\r
76                 if (WITH_TRANSPORT_BLE == "0") {\r
77                     exclude "**/ca/CaLeClientInterface.java"\r
78                     exclude "**/ca/CaLeServerInterface.java"\r
79                     println 'excluded BLE interface'\r
80                     }\r
81                 if (WITH_TRANSPORT_NFC == "0") {\r
82                     exclude "**/ca/CaNfcInterface.java"\r
83                     println 'excluded NFC interface'\r
84                     }\r
85             }\r
86         }\r
87     }\r
88 }\r
89 \r
90 \r
91 dependencies {\r
92     compile fileTree(dir: 'libs', include: ['*.jar'])\r
93 }\r
94 \r
95 ////////////////\r
96 ////NDK Support\r
97 ////////////////\r
98 //If using this, Android studio will fail run the following to set the environment variable for android studio:\r
99 //launchctl setenv ANDROID_NDK_HOME /Users/boos_patrick/Development/Android/android-ndk-r8e\r
100 //otherwise remove the dependsOn part and run ./gradlew buildNative from the command line\r
101 \r
102 task copyNativeLibs(type: Copy, dependsOn: 'buildNative') {\r
103     dependsOn 'buildNative'\r
104     from(new File('libs')) { include '**/*.so' }\r
105     into new File(buildDir, 'native-libs')\r
106 }\r
107 \r
108 tasks.withType(JavaCompile) { compileTask -> compileTask.dependsOn copyNativeLibs }\r
109 \r
110 clean.dependsOn 'cleanCopyNativeLibs'\r
111 \r
112 tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask ->\r
113     pkgTask.jniFolders = new HashSet<File>()\r
114     pkgTask.jniFolders.add(new File(buildDir, 'native-libs'))\r
115 }\r
116 \r
117 task buildNative(type: Exec) {\r
118     if (System.env.ANDROID_NDK_HOME != null) {\r
119         //for windows use 'ndk-build.cmd'\r
120         //def ndkBuild = new File(System.env.ANDROID_NDK_HOME, 'ndk-build.cmd')\r
121         def ndkBuild = new File(System.env.ANDROID_NDK_HOME, 'ndk-build')
122         commandLine ndkBuild, "APP_ABI=$TARGET_ARCH", "APP_OPTIM=$RELEASE", "SECURE=$SECURED", "WITH_CLOUD=$WITH_CLOUD", "RD_MODE=$RD_MODE", "WITH_MQ_PUB=$WITH_MQ_PUB", "WITH_MQ_SUB=$WITH_MQ_SUB", "WITH_MQ_BROKER=$WITH_MQ_BROKER"
123     } else {\r
124         println '##################'\r
125         println 'Skipping NDK build'\r
126         println 'Reason: ANDROID_NDK_HOME not set.'\r
127         println '##################'\r
128     }\r
129 }\r