-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Web3j fix android #2122
Web3j fix android #2122
Conversation
a744078
to
0f09737
Compare
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Nischal Sharma <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Nischal Sharma <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Nischal Sharma <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Nischal Sharma <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Nischal Sharma <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Hanmz <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: hanmz <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: hanmz <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: gtebrean <[email protected]> Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
0f09737
to
5d442a4
Compare
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
few comments
@@ -260,7 +260,7 @@ private <T extends Type> void generateStaticArrayTypes(String path) throws IOExc | |||
.addTypeVariable(typeVariableName) | |||
.superclass( | |||
ParameterizedTypeName.get( | |||
new ClassName(String.valueOf(StaticArray.class)), typeVariableName)) | |||
new ClassName("org.web3j.abi.datatypes", "StaticArray"), typeVariableName)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remember that in the end we said that we won't update the codegen module, anything change? with what exactly are these modiffication helping?
FileSpec kotlinFile = | ||
FileSpec.builder(packageName, theContract.getSimpleName() + "Test") | ||
.addType(testClass) | ||
.build(); | ||
kotlinFile.writeTo(new File(writePath)); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So as JavaClassGenerator is commented out only do we generate only kotlin test classes ?
@@ -1004,7 +1036,7 @@ | |||
// | |||
// @Test | |||
// public void testBuildFunctionLinkBinaryWithReferences() throws Exception { | |||
// MethodSpec methodSpec = solidityFunctionWrapper.buildLinkLibraryMethod(); | |||
// FunSpec methodSpec = solidityFunctionWrapper.buildLinkLibraryMethod(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All these will be uncommented when will generate the Kotlin wrapper class?
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
From what I see build on this PR is not executed at all, only the DCO takes place, please check why this is happening, the build script is in the same folder where is the release script. You can find in this PR all the jobs which needs to be executed #2124 |
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
Signed-off-by: Shashank Kumar <[email protected]>
What does this PR do?
required
Where should the reviewer start?
required
Why is it needed?
required
Checklist