]>
sigrok.org Git - sigrok-androidutils.git/log
summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Uwe Hermann [Mon, 28 Aug 2017 22:44:26 +0000 (00:44 +0200)]
Makefile.am: Force Java source/target version to 1.6.
This fixes bug #752.
Marcus Comstedt [Fri, 12 May 2017 09:05:08 +0000 (11:05 +0200)]
Make update-device-filter generate valid usb-device tags
Fixes #932 in the correct fashion
Marcus Comstedt [Fri, 12 May 2017 09:02:32 +0000 (11:02 +0200)]
Revert "Parse vendor-id and product-id as hexadecimal values"
This reverts commit
2606541de1a91657c0001c0ea573d537069e2332 .
The usb-device tag is defined by Android and putting hexadecimal
values into it breaks compatibility which means that the XML can
not be used as a device filter in AndroidManifest.xml as intended.
Daniel Schaal [Tue, 9 May 2017 15:36:52 +0000 (17:36 +0200)]
Parse vendor-id and product-id as hexadecimal values
Fixes #932
Uwe Hermann [Wed, 29 Mar 2017 06:58:16 +0000 (08:58 +0200)]
device_filter.xml: Update.
Generated via:
$ make update-device-filter > device_filter.xml
Uwe Hermann [Tue, 28 Mar 2017 06:35:33 +0000 (08:35 +0200)]
Add an 'update-device-filter' Makefile target.
This can be (manually) used as follows to update the list of USB
VIDs/PIDs in device_filter.xml (based on the latest git version of the
libsigrok udev rules file, downloaded via wget):
$ make update-device-filter > device_filter.xml
This fixes parts of bug #665.
Marcus Comstedt [Wed, 7 Dec 2016 20:24:47 +0000 (21:24 +0100)]
Include the device filter XML in the AAR
Also add a convenience method for creating a UsbSupplicant from it.
Marcus Comstedt [Wed, 7 Dec 2016 19:25:45 +0000 (20:25 +0100)]
Bundle Java bindings into an AAR for ease of use
Marcus Comstedt [Wed, 7 Dec 2016 19:21:39 +0000 (20:21 +0100)]
CopyLibsTask: Fix unchecked warning
Uwe Hermann [Sat, 3 Dec 2016 18:48:17 +0000 (19:48 +0100)]
Random whitespace fixes (tabs vs. spaces).
Marcus Comstedt [Sun, 27 Nov 2016 14:56:24 +0000 (15:56 +0100)]
UsbHelper: Add additional methods for device enumeration and monitoring
In newer Android versions, the native enumeration code use by
libusb does not work anymore due to the necessary virtual file
system nodes not being available to user processes. Therefore,
Java helper code is now needed for enumeration as well.
This fixes parts of bug #701.
Marcus Comstedt [Tue, 22 Nov 2016 21:33:40 +0000 (22:33 +0100)]
CopyLibsTask: Rename libpcre.so to libercp.so
This is needed to avoid conflicts with the system libpcre.so, which
is compiled with the wrong options.
This fixes parts of bug #701.
Marcus Comstedt [Tue, 3 Nov 2015 19:25:01 +0000 (20:25 +0100)]
CopyLibsTask: Fix null dereference in getLibForSoname
If either there are no <include> or no <exclude> directives,
then getIncludePatterns() or getExcludePatterns() will return
null, so handle that.
Marcus Comstedt [Tue, 21 Oct 2014 10:05:46 +0000 (12:05 +0200)]
CopyLibsTask: Handle DT_RUNPATH as well as DT_RPATH
gold in binutils 2.24 (NDK r10c) sets DT_RUNPATH instead of DT_RPATH
as default, so handle both.
Uwe Hermann [Tue, 26 Aug 2014 19:03:54 +0000 (21:03 +0200)]
UsbSupplicant.java: Add Apache 2.0 license header.
The DeviceFilter inner class is from AOSP.
Uwe Hermann [Mon, 25 Aug 2014 23:14:05 +0000 (01:14 +0200)]
.gitignore: Update.
Uwe Hermann [Tue, 26 Aug 2014 18:54:19 +0000 (20:54 +0200)]
configure.ac: Minor additions.
Uwe Hermann [Tue, 26 Aug 2014 18:43:13 +0000 (20:43 +0200)]
Make the default build more silent.
Uwe Hermann [Tue, 26 Aug 2014 18:33:03 +0000 (20:33 +0200)]
Use non-recursive autotools setup.
Uwe Hermann [Tue, 26 Aug 2014 18:30:43 +0000 (20:30 +0200)]
Fix minor typos.
Uwe Hermann [Mon, 25 Aug 2014 23:14:40 +0000 (01:14 +0200)]
Minor whitespace and cosmetic fixes.
Use one tab for indenting Java files (not a mix of tabs and spaces).
Uwe Hermann [Mon, 25 Aug 2014 22:38:16 +0000 (00:38 +0200)]
Add some missing license headers.
Also, use "sigrok-androidutils" as project name everywhere.
Marcus Comstedt [Fri, 18 Jul 2014 15:52:29 +0000 (17:52 +0200)]
Fix make dist
Marcus Comstedt [Fri, 18 Jul 2014 15:41:53 +0000 (17:41 +0200)]
Removed unnecessary all rule, and added a clean rule
Marcus Comstedt [Fri, 18 Jul 2014 14:15:43 +0000 (16:15 +0200)]
Build a library with the C++ part of environment setup
Marcus Comstedt [Wed, 16 Jul 2014 19:23:05 +0000 (21:23 +0200)]
Install device_filter.xml
Marcus Comstedt [Wed, 16 Jul 2014 18:49:24 +0000 (20:49 +0200)]
Created a new repository for Android support code