Free domestic 🚚 🚚 🚚 on orders over $75!
toggle color
toggle width
Search returned no results
View all products

Added to cart:

Subtotal: $

Cart is empty
View all products
  • quantity:

Subtotal: $

bg
@psidentityJanuary 10th, 2019
T1Autograph

T1Autograph for iOS and Android has been updated to v2.0.3 (android build 17, iOS build 46). Documentation for both the iOS and Android versions is available on the T1Autograph product page. Show release notes

  • Fixed
    • iOS - Fixed rare crash when signature data is not available
    • Android - Fixed rare crash when signature data is not available

Android Note: You may specify the latest version in your gradle file.

implementation 'com.tenonedesign.t1autograph:t1autograph:2.0.3'

iOS Note: if you’re using CocoaPods (or similarly with Carthage), your podfile should show something like this:

pod 'T1Autograph', '~> 2.0'

Another iOS note: T1Autograph (and most other frameworks) include simulator binary slices so you can work in the simulator. There’s a handy script available to trim out any frameworks you might be using at build time so they do not cause errors when uploading to the app store.

Latest library and demo projects Release history for T1Autograph

@psidentityNovember 6th, 2018
T1Autograph

T1Autograph for iOS and Android has been updated to v2.0.2 (android build 16, iOS build 45). Documentation for both the iOS and Android versions is available on the T1Autograph product page. Show release notes

  • Fixed
    • iOS - Azimuth data in XML output is corrected
    • iOS - Location data in XML output is now in mm instead of m
    • iOS - Updated with resolution support for iPhone XS, XS Max, XR, iPad Pro 11, iPad Pro 12.0
    • Android - fixed onLineEndWithSignaturePointCount to show total signature count instead of just stroke count
    • Android - fixed velocity spike when using s-pen due to skipped first events
    • Android - added additional checks for array access that may have caused crash
    • Android - fixed some leaks
    • Android - Location data in XML output is now in mm instead of m
    • Android - prevented signature fragment from closing unnecessarily
  • Other changes
    • Some debug logging messages were removed.

Android Note: You may specify the latest version in your gradle file.

implementation 'com.tenonedesign.t1autograph:t1autograph:2.0.2'

iOS Note: if you’re using CocoaPods (or similarly with Carthage), your podfile should show something like this:

pod 'T1Autograph', '~> 2.0'

Another iOS note: T1Autograph (and most other frameworks) include simulator binary slices so you can work in the simulator. There’s a handy script available to trim out any frameworks you might be using at build time so they do not cause errors when uploading to the app store.

Latest library and demo projects Release history for T1Autograph

@psidentityAugust 10th, 2018
T1Autograph

The T1Autograph Android library has been updated to v2.0.1 (build 9). This minor update corrects back button misbehavior, removes logging messages, and prevents signatures from being erased unnecessarily. Documentation for both the iOS and Android versions is available on the T1Autograph product page. Show release notes

  • Fixed
    • Android back button now behaves as expected when a T1Autograph modal is shown from a fragment.
    • The drawing canvas is no longer cleared when the Autograph view is translated when a soft keyboard is displayed.
  • Other changes
    • Some debug logging messages were removed.

Note: You may specify the latest version in your gradle file.

implementation 'com.tenonedesign.t1autograph:t1autograph:2.0.1'

Latest library and demo projects Release history for T1Autograph

@psidentityMay 7th, 2018
T1Autograph

The T1Autograph iOS library has been updated to v2.0.1 (build 43). This minor update corrects a small CGColor leak, adds resolution support for early 2018 iPad “education” models, and fixes a crashing bug in iOS 8 and iOS 9. Documentation for both the iOS and Android versions is available on the T1Autograph product page. Show release notes

  • Fixed
    • A few CGColor objects leaked upon completion of a signature have now been properly released.
    • Fixed a crashing bug in iOS 8 and iOS 9 that occurs when a signature is completed. Thanks, Drew!
  • Other changes
    • 2018 iPad models have been formally supported. Note: iOS does not allow programmatic access to device pixel resolution. T1Autograph uses this information to measure absolution displacement of events for the purposes of calculating velocity, acceleration, and associated data. As a workaround, if the library encounters unknown new devices, it will make an educated guess about the pixel resolution, and we will add explicit support for new devices as they are released (or until a pixel resolution API is made public).

Note: if you’re using CocoaPods (or similarly with Carthage), your podfile should show something like this:

pod 'T1Autograph', '~> 2.0'

A final note about dynamic frameworks: The App Store may still be rejecting apps containing simulator binary slices. T1Autograph (and most other frameworks) include these slices so you can work in the simulator. There’s a handy script available to trim out any frameworks you might be using at build time.

Latest library and demo projects Release history for T1Autograph

@psidentityMarch 23rd, 2018
T1Autograph

The T1Autograph iOS library has been updated to v2.0.0 (build 42). This major update adds a lot of features and makes a few important changes. There are no major breaking changes to the API, but some defaults are different, so please read the full release notes. Oh! One more thing. T1Autograph is now available on the Android platform. Now you can capture smooth, consistent, and accurate signatures on any device (except blackberry (and windows phone)). It launches as v2.0 with feature parity with the iOS version. We expect major updates to stay in lockstep between the platforms. Point releases may be more frequent on the Android side as the implementation matures. Thanks again for using T1Autograph. We hope it continues to be of good service to you. Updated documentation for both the iOS and Android versions is available on the T1Autograph product page. Show release notes

  • New
    • SVG signature output is now available. This is great for displaying in HTML documents, or anywhere a lightweight scalable signature format is preferred. Use T1Signature.svgString to access the SVG as a string.
    • By popular request, T1Autograph now provides a standards-compliant biometric interchange data according to ISO/IEC 19794-7:2014 AMD 1:2015. This XML document contains all data collected during the signature event, including position, velocity, acceleration, pen pressure, pen azimuth, pen elevation, and timestamps. If you are new to this format, there is a great public explainer of it here (no paywall).
    • Improved signature rendering speed. In most cases, the signature will now be available instantly as the done button is tapped.
    • The signature timestamp can now be added to a signature after the date. Set both showDate and dateIncludesTime to true.
  • Other changes
    • The default stroke width is now 4.0f instead of 6.0f. If you’re not setting it explicitly, make sure you are satisfied with the output as it may now differ.
    • Velocity and acceleration values are now calculated and available in units of meters/second.
    • The cryptographic hash and date locations have been updated slightly for more consistent results.
    • Custom hash string values may now be of any length (previously limited to 10 characters).
    • The T1Signature property rawPoints now excludes points outside of the signature bounds when clipSignatureBounds is true.

Note: if you’re using CocoaPods (or similarly with Carthage), your podfile should show something like this:

pod 'T1Autograph', '~> 2.0'

A final note about dynamic frameworks: The App Store may still be rejecting apps containing simulator binary slices. T1Autograph (and most other frameworks) include these slices so you can work in the simulator. There’s a handy script available to trim out any frameworks you might be using at build time.

Latest library and demo project Release history for T1Autograph