How to remove Footer from Aviary Editor?

I am working on a simple graphical editor. Aviary Registration for the Aviary Image Editor SDK is disabled, and now it comes with Adobe Creative Sdk. No doubt they provide so many functions, but they are not useful for my simple image editor.

I just want to use some image editing tools like cropping and orientation. So I wrote the code below in my MainActivity.

    String[] tools = new String[] { "CROP", "ORIENTATION" };        
    Intent newIntent = new AviaryIntent.Builder(this)
            .setData(imageUri)                            // input image src
            .withOutput(Uri.parse("file://" + "abc.jpg")) // output file
            .withOutputFormat(Bitmap.CompressFormat.JPEG) // output format
            .withOutputSize(MegaPixels.Mp5)               // output size
            .withOutputQuality(90)                        // output quality
            .build();
    newIntent.putExtra(Constants.EXTRA_TOOLS_LIST, tools);
    startActivityForResult(newIntent, 1);

The problem is that I want to remove the link Creative Cloud Connectedin the editor footer. Please provide some solution.

Thank...

-2
source share
2 answers

Creative SDK, Aviary Editor.

xml, Aviary Editor.

, . xml aviary_bottombar.xml :

Overridden xml file in application module

exploaded-aar sdk, ...

Malicious AAR files of creative sdk

, -...

+3

, Creative SDK Creative Cloud . , , .

Adobe Creative SDK.

Adobe .

+2

Source: https://habr.com/ru/post/1585032/


All Articles