Did someone try to make QT application that supports DFU for BLE devices? Can it be done using nordic DFU android/ios libraries (to include them somehow in QT project)?
Did someone try to make QT application that supports DFU for BLE devices? Can it be done using nordic DFU android/ios libraries (to include them somehow in QT project)?
ou can simply include DFU library in build.grade with :
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
[...]
dependencies {
compile group: 'no.nordicsemi.android', name: 'dfu', version: '1.1.1'
}
}
ou can simply include DFU library in build.grade with :
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
[...]
dependencies {
compile group: 'no.nordicsemi.android', name: 'dfu', version: '1.1.1'
}
}
Thanks Nabil for your answer!