This repository was archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
v24.2.1 #14
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This will help to verify that the files downloaded at compile time are not corrupt
The major version of the Android Support libraries should match the target framework the app is compiled against, in this case 7.0 (API Level 24)
This will cause the targetSdkVersion to be equal to the Target Framework at compile time
We used to use a tool that invoked class-parse manually to generate metadata fixups for parameter names, however now we are switching to use class-parse as the java xml exporter so we don't need to do this anymore, it will be done for us.
v4 has been broken down into: support-combat support-core-ui support-core-utils support-fragment support-media-compat
v4 was broken into 5 separate libs. We don't want to break existing users referencing v4, so we'll still keep v4 around but make it an empty lib that depends on the 5 new ones, in addition we'll compile in some type forward attributes which point the types that used to be in v4 to the new 5 dependencies.
genapi.exe will produce a bunch of type forward attributes in .cs files for given assemblies. We're creating these files for the new 5 support libs which v4 has been broken into.
we must have overwrote it when setting everything to 7.0
Moved to a github release instead of S3 storage
Switch from v4 to new libs
Switch from v4 to new libs
Switch from v4 to new libs
Switch from v4 to new libs
We now have sub-dependencies, which probably don't require their own component
This will reference all the support libs in an app that gets built to see if there are any obvious Android callable wrapper generator errors on the java side that you wouldn't see just by compiling the bindings, until you used them in an app.
Originally some interfaces were attempted to be made public (which isn't possible for Java interfaces), so we had to remove them from being implemented in public members.
Support Constraint Layout
Also adds support for the missing ExtraCallback callback on the custom tabs session. This fixes #13
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates to v24.2.1
Switches bindings to use class-parse