I'm working on an simple image editor. Aviary's Signup for Aviary Image Editor SDK is disable and it is now coming with Adobe's Creative Sdk. No doubt they are providing so much features, But they are not useful for my simple image editor.
I just want to use some image editing tools like crop and orientation. So I have written the below code 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, I want to remove Creative Cloud Connected
link in the footer of the editor.
Please provide some solution.
Note: It is just a demo app for learning purpose, not for production. We are not going to release it anywhere.
Thanks...