Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue-271/SDK jar not compatible with old Android Runtimes #295

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from

Commits on Dec 7, 2021

  1. Configuration menu
    Copy the full SHA
    88d88b0 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2021

  1. Configuration menu
    Copy the full SHA
    b79ae34 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2022

  1. Issue-271 SDK jar not compatible with old Android Runtimes

    The Android 4.x runtime loads an ancient org.apache.commons.codec jar which is incompatible and shadowed org.apache.commons.codec.binary.Base64.decode without the decode method.
    This backports the Base64.java and BaseNCodec.java into the `utils` package and references this from `Encoder` so we get a working Base64 decode on Android 4.
    Thanks to https://github.com/timmolter
    richdrich committed Jan 8, 2022
    Configuration menu
    Copy the full SHA
    13e6df7 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2022

  1. Merge branch 'master' into issue-271/android-base64

    # Conflicts:
    #	src/main/java/com/algorand/algosdk/util/Encoder.java
    richdrich committed Feb 12, 2022
    Configuration menu
    Copy the full SHA
    b7825e2 View commit details
    Browse the repository at this point in the history