Merge branch '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.1.1"\r
45         buildConfigField 'int', 'SECURED', SECURED\r
46         buildConfigField "int", 'WITH_MQ_PUB', WITH_MQ_PUB\r
47         buildConfigField "int", 'WITH_MQ_SUB', WITH_MQ_SUB\r
48         buildConfigField "int", 'WITH_MQ_BROKER', WITH_MQ_BROKER\r
49     }\r
50     buildTypes {\r
51         release {\r
52             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\r
53         }\r
54     }\r
55 \r
56     lintOptions {\r
57         abortOnError false\r
58     }\r
59 \r
60     sourceSets {\r
61         main {\r
62             manifest.srcFile 'src/main/AndroidManifest.xml'\r
63             jniLibs.srcDir 'libs'\r
64             jni.srcDirs = [] //disable automatic ndk-build call\r
65         }\r
66     }\r
67 }\r
68 \r
69 \r
70 dependencies {\r
71     compile fileTree(dir: 'libs', include: ['*.jar'])\r
72 }\r
73 \r
74 ////////////////\r
75 ////NDK Support\r
76 ////////////////\r
77 //If using this, Android studio will fail run the following to set the environment variable for android studio:\r
78 //launchctl setenv ANDROID_NDK_HOME /Users/boos_patrick/Development/Android/android-ndk-r8e\r
79 //otherwise remove the dependsOn part and run ./gradlew buildNative from the command line\r
80 \r
81 task copyNativeLibs(type: Copy, dependsOn: 'buildNative') {\r
82     dependsOn 'buildNative'\r
83     from(new File('libs')) { include '**/*.so' }\r
84     into new File(buildDir, 'native-libs')\r
85 }\r
86 \r
87 tasks.withType(JavaCompile) { compileTask -> compileTask.dependsOn copyNativeLibs }\r
88 \r
89 clean.dependsOn 'cleanCopyNativeLibs'\r
90 \r
91 tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask ->\r
92     pkgTask.jniFolders = new HashSet<File>()\r
93     pkgTask.jniFolders.add(new File(buildDir, 'native-libs'))\r
94 }\r
95 \r
96 task buildNative(type: Exec) {\r
97     if (System.env.ANDROID_NDK_HOME != null) {\r
98         //for windows use 'ndk-build.cmd'\r
99         //def ndkBuild = new File(System.env.ANDROID_NDK_HOME, 'ndk-build.cmd')\r
100         def ndkBuild = new File(System.env.ANDROID_NDK_HOME, 'ndk-build')\r
101         commandLine ndkBuild, "APP_ABI=$TARGET_ARCH", "APP_OPTIM=$RELEASE", "SECURE=$SECURED", "WITH_MQ_PUB=$WITH_MQ_PUB", "WITH_MQ_SUB=$WITH_MQ_SUB", "WITH_MQ_BROKER=$WITH_MQ_BROKER"\r
102     } else {\r
103         println '##################'\r
104         println 'Skipping NDK build'\r
105         println 'Reason: ANDROID_NDK_HOME not set.'\r
106         println '##################'\r
107     }\r
108 }\r