Skip to content

Commit

Permalink
workaround for failed dependency for USBSerial
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas committed Nov 7, 2024
1 parent bc35b88 commit c5b35b3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ dependencies {
implementation "net.sf.marineapi:marineapi:0.11.0"
implementation 'androidx.core:core:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.github.felHR85:UsbSerial:6.1.0'
//see https://github.com/felHR85/UsbSerial/issues/375
implementation('com.github.felHR85:UsbSerial:7ad6c9f6'){
artifact {
name = 'UsbSerial'
classifier = 'release'
type = 'aar'
}
}
implementation group: 'net.straylightlabs', name: 'hola', version: '0.2.2'
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.0'
implementation 'androidx.documentfile:documentfile:1.0.1'
Expand Down

0 comments on commit c5b35b3

Please sign in to comment.