diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-11-17 14:57:55 -0330 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-11-17 14:57:55 -0330 |
commit | 6dc8ff9f22fedfb4d1c4f3933c8ea68f9976d176 (patch) | |
tree | 31b8a66ff740c76088547e576a6137ad2c5dac31 /android/test | |
parent | Removed bogus tracing. (diff) | |
download | ice-6dc8ff9f22fedfb4d1c4f3933c8ea68f9976d176.tar.bz2 ice-6dc8ff9f22fedfb4d1c4f3933c8ea68f9976d176.tar.xz ice-6dc8ff9f22fedfb4d1c4f3933c8ea68f9976d176.zip |
Android tests & demos now copy the bks files from the certs dir.
Diffstat (limited to 'android/test')
-rw-r--r-- | android/test/android/build.gradle | 12 | ||||
-rw-r--r-- | android/test/android/src/main/res/raw/client.bks | bin | 3633 -> 0 bytes | |||
-rw-r--r-- | android/test/android/src/main/res/raw/server.bks | bin | 3639 -> 0 bytes |
3 files changed, 12 insertions, 0 deletions
diff --git a/android/test/android/build.gradle b/android/test/android/build.gradle index 9d9168f6f21..6d939cbac67 100644 --- a/android/test/android/build.gradle +++ b/android/test/android/build.gradle @@ -76,6 +76,18 @@ tests.each { } } +task copyBksTask(type: Copy) { + from "${rootProject.projectDir}/../certs/client.bks" + from "${rootProject.projectDir}/../certs/server.bks" + into "src/main/res/raw" +} +preBuild.dependsOn(copyBksTask) + +clean { + delete("src/main/res/raw/client.bks") + delete("src/main/res/raw/server.bks") +} + dependencies { compile localDependency('ice') compile project(':test') diff --git a/android/test/android/src/main/res/raw/client.bks b/android/test/android/src/main/res/raw/client.bks Binary files differdeleted file mode 100644 index b1f4d3f0a6a..00000000000 --- a/android/test/android/src/main/res/raw/client.bks +++ /dev/null diff --git a/android/test/android/src/main/res/raw/server.bks b/android/test/android/src/main/res/raw/server.bks Binary files differdeleted file mode 100644 index 276f19e74a6..00000000000 --- a/android/test/android/src/main/res/raw/server.bks +++ /dev/null |