// // Copyright (c) ZeroC, Inc. All rights reserved. // project.ext.displayName = "IceBT Compat" project.ext.description = "Bluetooth support for Ice" slice { java { files = fileTree(dir: "$project.ext.topSrcDir/slice/IceBT", includes:['*.ice'], excludes:["*F.ice"]) } } dependencies { implementation project(':ice-compat') } apply from: "$project.ext.topSrcDir/java/gradle/library.gradle" jar { // // The classes in src/main/java/android/bluetooth are stubs that allow us to compile the IceBT transport // plug-in without requiring an Android SDK. These classes are excluded from the IceBT JAR file. // exclude("android/**") }