Code Monkey home page Code Monkey logo

sigcap's People

Contributors

dependabot[bot] avatar mattsilber avatar ravidsrk avatar ypdieguez avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sigcap's Issues

Kotlin Gradle Plugin loaded multiple times

The Kotlin Gradle plugin was loaded multiple times in different subprojects, which is not supported and may break the build.
This might happen in subprojects that apply the Kotlin plugins with the Gradle 'plugins { ... }' DSL if they specify explicit versions, even if the versions are equal.
Please add the Kotlin plugin to the common parent project or the root project, then remove the versions in the subprojects.
If the parent project does not need the plugin, add 'apply false' to the plugin line.
See: https://docs.gradle.org/current/userguide/plugins.html#sec:subprojects_plugins_dsl
The Kotlin plugin was loaded in the following projects: ':sigcap-androidx', ':sigcap-sample'

Can't... Deploy... Androidx... Module...

Need to fix various deployment issues with sigcap-androidx module:

com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0 :sigcap-androidx:bintrayUpload failing with some kind of malformed String Property errors

com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5 :sigcap-androidx:bintrayUpload fails with:

Cannot cast object 'task ':sigcap-androidx:bintrayUpload'' with class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask_Decorated' to class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask'

which is likely (at least partially) related to 1.8.1+ changes where bintrayUpload and bintrayPublish tasks are being applied at the project-scope and not the module-scope like previous versions.

References for my sanity (in no particular order, labeling, or relevancy):
bintray/gradle-bintray-plugin#241
https://developer.android.com/studio/build/maven-publish-plugin
https://gist.github.com/gsavvid/f7ffe00d846a50de7490c2ecbd7b4169
https://stackoverflow.com/questions/59334802/unable-to-deploy-to-bintray-with-gradle
https://github.com/sky-uk/gradle-maven-plugin

how to use in fragment ?

i want implement in fragment
`

  @Override
   public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    root = (ViewGroup) inflater.inflate(R.layout.fragment_work_order_detail, null);


    woImgSignature.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            new SignatureDialogBuilder()
                    .show(getActivity(), new SignatureDialogBuilder.SignatureEventListener() {
                        @Override
                        public void onSignatureEntered(File savedFile) {
                            new ImageRequest(getActivity(),root.findViewById(R.id.wo_img_signature))
                                    .setTargetFile(savedFile)
                                    .setFadeTransition()
                                    .execute(); // Just showing the image

                        }

                        @Override
                        public void onSignatureInputCanceled() {
                            Toast.makeText(getActivity(), "Signature input canceled", Toast.LENGTH_SHORT)
                                    .show();
                        }

                        @Override
                        public void onSignatureInputError(Throwable e) {
                            if (e instanceof NoSignatureException) // They clicked confirm without entering anything
                            // doSomethingOnNoSignatureEntered();
                            {

                            } else {
                                Toast.makeText(getActivity(), "Signature error", Toast.LENGTH_SHORT)
                                        .show();
                            }
                        }
                    });
        }
    });

    return root;
}`

in this

public void onSignatureEntered(File savedFile) {
new ImageRequest(getActivity(),root.findViewById(R.id.wo_img_signature))

i got error can not resolved counstructor

Screenshot from 2019-05-07 12-30-53

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.