Aviary Image Editor에서 사용자 로그인 버튼 제거 (Removing user login button on Aviary Image Editor)


문제 설명

Aviary Image Editor에서 사용자 로그인 버튼 제거 (Removing user login button on Aviary Image Editor)

저는 퍼즐 솔루션 이미지를 편집할 수 있는 게임에 AviarySDK를 통합했습니다. 모든 것이 잘 작동하지만 NavigationBar에 로그인/등록 버튼이 있다는 것을 깨달았습니다.‑

여기에 이미지 설명 입력

게임 자체에 자체 로그인/등록 워크플로가 있어 사용자를 혼란스럽게 할 수 있으므로 사용자가 로그인하지 못하도록 하고 싶습니다. iOS 및 Android SDK에서 이 버튼을 숨기거나 비활성화하는 방법이 있습니까?


참조 솔루션

방법 1:

The login lets users manage their Image Editor content (filters, stickers, frames, etc) across devices and apps with Creative SDK Image Editor integrations.

It's possible to remove the login button by removing all content tools from the Image Editor. When all content tools are removed, the user login will go away.

iOS You can do this with the setToolOrder: method:

[AdobeImageEditorCustomization setToolOrder:@[kAFEnhance, kAFCrop, <etc etc>]];

Details in the Image Editor guide for iOS.

Android You can do this with the withToolList(ToolLoaderFactory.Tools[]) method:

withToolList({ToolLoaderFactory.Tools.CROP, ToolLoaderFactory.Tools.ENHANCE, <etc etc>})

Details in the Image Editor guide for Android.


Note: Tools in the arrays are inclusive; those omitted from the array will not appear in the Image Editor. The order of the tools in the array is respected in the UI.

(by ssantosAsh Ryan Arnwine)

참조 문서

  1. Removing user login button on Aviary Image Editor (CC BY‑SA 2.5/3.0/4.0)

#adobecreativesdk #aviary #Android






관련 질문

Swift의 Adobe Creative SDK (Adobe Creative SDK in Swift)

대화 상자 없이 Avairy 실행(div 내부) (Launch Avairy without a dialog (inside div))

Aviary/Creative SDK 이미지 편집기로 이미지 교체 (Replace image with Aviary/Creative SDK Image Editor)

Ionic/Cordova에서 Adobe Creative SDK Feather Editor를 통합하는 방법 (How to integrate Adobe Creative SDK Feather Editor in Ionic/Cordova)

64비트 Android 장치에서 .so 파일을 찾을 수 없습니다. (Can not find .so file on 64 bit android device)

편집된 이미지를 웹에 저장하기 위한 Adobe Creative SDK (Adobe Creative SDK for Web saving edited image)

크리에이티브 SDK. MainActivity를 실행한 다음 이미지 편집기를 시작합니다. 그런 다음 홈 키. 그런 다음 앱으로 돌아갑니다. 이미지 편집기 활동이 사라짐 (Creative SDK. MainActivity then launch Image Editor. then home key. then back to app. Image Editor activity disappear)

Creative SDK에 맞춤 프레임 및 스티커 추가 (Adding Custom Frames and Stickers to Creative SDK)

Aviary 웹 SDK 자르기 도구 및 모바일 브라우저 기능이 작동하지 않음 (Aviary web SDK crop tool and mobile browser features not working)

Aviary Image Editor에서 사용자 로그인 버튼 제거 (Removing user login button on Aviary Image Editor)

자르기 도구를 연 상태에서 강제 자르기/시작 (Force crop/start with crop tool open)

Adobe 크리에이티브 SDK가 Android Nougat에서 작동하지 않음 (Adobe creative SDK not working for Android Nougat)







코멘트