summaryrefslogtreecommitdiff
path: root/android/test
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-11-17 14:57:55 -0330
committerMatthew Newhook <matthew@zeroc.com>2014-11-17 14:57:55 -0330
commit6dc8ff9f22fedfb4d1c4f3933c8ea68f9976d176 (patch)
tree31b8a66ff740c76088547e576a6137ad2c5dac31 /android/test
parentRemoved bogus tracing. (diff)
downloadice-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.gradle12
-rw-r--r--android/test/android/src/main/res/raw/client.bksbin3633 -> 0 bytes
-rw-r--r--android/test/android/src/main/res/raw/server.bksbin3639 -> 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
deleted file mode 100644
index b1f4d3f0a6a..00000000000
--- a/android/test/android/src/main/res/raw/client.bks
+++ /dev/null
Binary files differ
diff --git a/android/test/android/src/main/res/raw/server.bks b/android/test/android/src/main/res/raw/server.bks
deleted file mode 100644
index 276f19e74a6..00000000000
--- a/android/test/android/src/main/res/raw/server.bks
+++ /dev/null
Binary files differ