3 Star 11 Fork 6

森林之王/Android串口通信例子

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
jitpack.gradle 658 Bytes
一键复制 编辑 原始数据 按行查看 历史
Geek8ug 提交于 2019-11-01 17:32 . 1.0版本发版
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.f1reking'
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
failOnError false
source = android.sourceSets.main.java.sourceFiles
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
classpath += configurations.compile
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/senlinzhiwang/Android-SerialPort-Simple.git
git@gitee.com:senlinzhiwang/Android-SerialPort-Simple.git
senlinzhiwang
Android-SerialPort-Simple
Android串口通信例子
master

搜索帮助