├── .gitignore ├── adobeio-manifest.json ├── asset-browser-ui └── code │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── assetbrowserui │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── adobe │ │ │ │ └── assetbrowserui │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── adobe │ │ └── assetbrowserui │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── documentation ├── adobe-creative-sdk-for-android.md ├── app-submission-guidelines.md ├── asset-browser.md ├── branding-guidelines.md ├── changelog.md ├── class-references.md ├── framework-dependencies.md ├── getting-started.md ├── references │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── adobe │ │ │ └── creativesdk │ │ │ ├── behance │ │ │ ├── AdobeBehanceAddProjectWorkflowOptions.html │ │ │ ├── AdobeBehanceCustomizationOptions.html │ │ │ ├── AdobeBehanceEditProfileOptions.html │ │ │ ├── AdobeBehanceProjectDraftOptions.html │ │ │ ├── AdobeBehancePublishInvalidImageException.html │ │ │ ├── AdobeBehanceSDKAbstractPublishOptions.html │ │ │ ├── AdobeBehanceSDKPublishProjectOptions.html │ │ │ ├── AdobeBehanceSearchProjectOptions.html │ │ │ ├── AdobeBehanceUpdateProfileOptions.html │ │ │ ├── AdobeUXBehanceWorkflow.html │ │ │ ├── BehanceSDKSecurityException.html │ │ │ ├── IAdobeBehanceADDProjectModuleListener.html │ │ │ ├── IAdobeBehanceCreateProjectDraftListener.html │ │ │ ├── IAdobeBehanceGetCreativeFieldsListener.html │ │ │ ├── IAdobeBehanceProjectPublishListener.html │ │ │ ├── IAdobeBehanceSDKEditProfileListener.html │ │ │ ├── IAdobeBehanceSDKGetUserProfileListener.html │ │ │ ├── IAdobeBehanceSDKPublishProjectResultIntentExtras.html │ │ │ ├── IAdobeBehanceSearchProjectListener.html │ │ │ ├── IAdobeBehanceUpdateProfileListener.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── foundation │ │ │ ├── AdobeCSDKFoundation.html │ │ │ ├── IAdobeGenericCompletionCallback.html │ │ │ ├── IAdobeGenericErrorCallback.html │ │ │ ├── applibrary │ │ │ │ ├── AdobeAppLibraryLauncher.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── auth │ │ │ │ ├── AdobeAuthErrorCode.html │ │ │ │ ├── AdobeAuthException.html │ │ │ │ ├── AdobeAuthSessionHelper.AdobeAuthStatus.html │ │ │ │ ├── AdobeAuthSessionHelper.IAdobeAuthStatusCallback.html │ │ │ │ ├── AdobeAuthSessionHelper.html │ │ │ │ ├── AdobeAuthSessionLauncher.Builder.html │ │ │ │ ├── AdobeAuthSessionLauncher.html │ │ │ │ ├── AdobeAuthUserProfile.html │ │ │ │ ├── AdobeClientScope.html │ │ │ │ ├── AdobeUXAuthManager.html │ │ │ │ ├── IAdobeAuthClientCredentials.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── network │ │ │ │ ├── AdobeNetworkException.AdobeNetworkErrorCode.html │ │ │ │ ├── AdobeNetworkException.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── sendtodesktop │ │ │ │ ├── AdobeCreativeCloudApplication.html │ │ │ │ ├── AdobeSendToDesktopApplication.html │ │ │ │ ├── AdobeSendToDesktopErrorCode.html │ │ │ │ ├── AdobeSendToDesktopException.html │ │ │ │ ├── IAdobeSendToDesktopCallBack.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ └── storage │ │ │ │ ├── AdobeAsset.html │ │ │ │ ├── AdobeAssetCompFile.html │ │ │ │ ├── AdobeAssetDataSourceFilter.html │ │ │ │ ├── AdobeAssetDataSourceFilterType.html │ │ │ │ ├── AdobeAssetDataSourceType.html │ │ │ │ ├── AdobeAssetDesignLibraryItemFilter.html │ │ │ │ ├── AdobeAssetDesignLibraryItemFilterType.html │ │ │ │ ├── AdobeAssetDesignLibraryItemType.html │ │ │ │ ├── AdobeAssetDrawFile.html │ │ │ │ ├── AdobeAssetErrorCode.html │ │ │ │ ├── AdobeAssetException.html │ │ │ │ ├── AdobeAssetFile.html │ │ │ │ ├── AdobeAssetFileExtensions.html │ │ │ │ ├── AdobeAssetFileRenditionType.html │ │ │ │ ├── AdobeAssetFolder.html │ │ │ │ ├── AdobeAssetFolderOrderBy.html │ │ │ │ ├── AdobeAssetFolderOrderDirection.html │ │ │ │ ├── AdobeAssetIllustratorFile.html │ │ │ │ ├── AdobeAssetImageDimensions.html │ │ │ │ ├── AdobeAssetLibrary.html │ │ │ │ ├── AdobeAssetLibraryColorMode.html │ │ │ │ ├── AdobeAssetLibraryColorThemeMood.html │ │ │ │ ├── AdobeAssetLibraryColorThemeRule.html │ │ │ │ ├── AdobeAssetLibraryColorType.html │ │ │ │ ├── AdobeAssetLibraryItem.html │ │ │ │ ├── AdobeAssetLibraryItem3DLight.html │ │ │ │ ├── AdobeAssetLibraryItem3DMaterial.html │ │ │ │ ├── AdobeAssetLibraryItem3DModel.html │ │ │ │ ├── AdobeAssetLibraryItemAnimation.html │ │ │ │ ├── AdobeAssetLibraryItemBrush.html │ │ │ │ ├── AdobeAssetLibraryItemColor.html │ │ │ │ ├── AdobeAssetLibraryItemColorTheme.html │ │ │ │ ├── AdobeAssetLibraryItemImage.html │ │ │ │ ├── AdobeAssetLibraryItemLook.html │ │ │ │ ├── AdobeAssetLibraryItemPattern.html │ │ │ │ ├── AdobeAssetLibraryItemStockImage.html │ │ │ │ ├── AdobeAssetLibraryItemTemplate.html │ │ │ │ ├── AdobeAssetMIMETypeFilter.html │ │ │ │ ├── AdobeAssetMIMETypeFilterType.html │ │ │ │ ├── AdobeAssetMimeTypes.html │ │ │ │ ├── AdobeAssetPSDFile.html │ │ │ │ ├── AdobeAssetPSFixFile.html │ │ │ │ ├── AdobeAssetPSMixFile.html │ │ │ │ ├── AdobeAssetPackage.html │ │ │ │ ├── AdobeAssetPackagePages.AdobeAssetPackageSharedProjectType.html │ │ │ │ ├── AdobeAssetPackagePages.html │ │ │ │ ├── AdobeAssetSharedProject.html │ │ │ │ ├── AdobeAssetSketchbook.html │ │ │ │ ├── AdobeCollaborationRoleType.html │ │ │ │ ├── AdobeCollaborationType.html │ │ │ │ ├── AdobeCommunityAssetImageDimension.html │ │ │ │ ├── AdobeDesignLibraryUtils.html │ │ │ │ ├── AdobeLibraryComposite.html │ │ │ │ ├── AdobeLibraryDelegate.html │ │ │ │ ├── AdobeLibraryDownloadPolicyType.html │ │ │ │ ├── AdobeLibraryElement.html │ │ │ │ ├── AdobeLibraryElementFilter.html │ │ │ │ ├── AdobeLibraryErrorCode.html │ │ │ │ ├── AdobeLibraryException.html │ │ │ │ ├── AdobeLibraryManager.html │ │ │ │ ├── AdobeLibraryRepresentation.html │ │ │ │ ├── AdobeLibraryStartupOptions.html │ │ │ │ ├── AdobeLibrarySyncStatus.html │ │ │ │ ├── AdobePSDComposite.html │ │ │ │ ├── AdobePSDCompositeBranch.html │ │ │ │ ├── AdobePSDCompositeMutableBranch.html │ │ │ │ ├── AdobePSDLayerComp.html │ │ │ │ ├── AdobePSDLayerNode.html │ │ │ │ ├── AdobePSDMutableLayerComp.html │ │ │ │ ├── AdobePSDMutableLayerNode.html │ │ │ │ ├── AdobePSDRGBColor.html │ │ │ │ ├── AdobePhoto.html │ │ │ │ ├── AdobePhotoAsset.AdobePhotoAssetType.html │ │ │ │ ├── AdobePhotoAsset.html │ │ │ │ ├── AdobePhotoAssetRendition.AdobePhotoAssetRenditionType.html │ │ │ │ ├── AdobePhotoAssetRendition.html │ │ │ │ ├── AdobePhotoAssetRevision.html │ │ │ │ ├── AdobePhotoCatalog.AdobePhotoCatalogType.html │ │ │ │ ├── AdobePhotoCatalog.html │ │ │ │ ├── AdobePhotoCollection.AdobePhotoCollectionFlag.html │ │ │ │ ├── AdobePhotoCollection.AdobePhotoCollectionSort.html │ │ │ │ ├── AdobePhotoCollection.PhotoCollectionDetails.html │ │ │ │ ├── AdobePhotoCollection.html │ │ │ │ ├── AdobePhotoErrorCode.html │ │ │ │ ├── AdobePhotoException.html │ │ │ │ ├── AdobePhotoPage.html │ │ │ │ ├── AdobeSelection.html │ │ │ │ ├── AdobeSelectionAsset.html │ │ │ │ ├── AdobeSelectionAssetFile.html │ │ │ │ ├── AdobeSelectionCompFile.html │ │ │ │ ├── AdobeSelectionDrawAsset.html │ │ │ │ ├── AdobeSelectionLibraryAsset.html │ │ │ │ ├── AdobeSelectionPSFixFile.html │ │ │ │ ├── AdobeSelectionPSMixFile.html │ │ │ │ ├── AdobeSelectionPhotoAsset.html │ │ │ │ ├── AdobeSelectionSketchAsset.html │ │ │ │ ├── AdobeUXAssetBrowser.ResultProvider.html │ │ │ │ ├── AdobeUXAssetBrowser.html │ │ │ │ ├── AdobeUXAssetBrowserConfiguration.html │ │ │ │ ├── AdobeUXAssetBrowserOption.html │ │ │ │ ├── IAdobeAssetFolderNextPageCallback.html │ │ │ │ ├── IAdobeCancelCallback.html │ │ │ │ ├── IAdobeGenericRequestCallback.html │ │ │ │ ├── IAdobePhotoAssetsListRequestCompletionHandler.html │ │ │ │ ├── IAdobeProgressCallback.html │ │ │ │ ├── IAdobeRequestCompletionCallback.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ └── typekit │ │ │ ├── AdobeTypekitException.ErrorCode.html │ │ │ ├── AdobeTypekitException.html │ │ │ ├── AdobeTypekitFont.FontFilePath.html │ │ │ ├── AdobeTypekitFont.ITypekitCallback.html │ │ │ ├── AdobeTypekitFont.html │ │ │ ├── AdobeTypekitFontBrowser.html │ │ │ ├── AdobeTypekitFontFamily.ITypekitCallback.html │ │ │ ├── AdobeTypekitFontFamily.html │ │ │ ├── AdobeTypekitManager.html │ │ │ ├── TypekitNotification.Event.html │ │ │ ├── TypekitNotification.html │ │ │ ├── UserNotAuthenticatedException.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-files │ │ ├── index-1.html │ │ ├── index-10.html │ │ ├── index-11.html │ │ ├── index-12.html │ │ ├── index-13.html │ │ ├── index-14.html │ │ ├── index-15.html │ │ ├── index-16.html │ │ ├── index-17.html │ │ ├── index-18.html │ │ ├── index-19.html │ │ ├── index-2.html │ │ ├── index-20.html │ │ ├── index-21.html │ │ ├── index-3.html │ │ ├── index-4.html │ │ ├── index-5.html │ │ ├── index-6.html │ │ ├── index-7.html │ │ ├── index-8.html │ │ └── index-9.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ ├── serialized-form.html │ └── stylesheet.css ├── send-to-desktop.md ├── typekit.md └── user-auth.md ├── getting-started └── code │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── gettingstarted │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── adobe │ │ │ │ └── gettingstarted │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── adobe │ │ └── gettingstarted │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── readme.md ├── send-to-desktop-api └── code │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── sendtodesktopapi │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── adobe │ │ │ │ └── sendtodesktopapi │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── adobe │ │ └── sendtodesktopapi │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── typekit-ui └── code │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── typekitui │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── adobe │ │ │ │ └── typekitui │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── adobe │ │ └── typekitui │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── user-auth-ui └── code ├── .gitignore ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── adobe │ │ └── userauthui │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── userauthui │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── adobe │ └── userauthui │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /adobeio-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/adobeio-manifest.json -------------------------------------------------------------------------------- /asset-browser-ui/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/.gitignore -------------------------------------------------------------------------------- /asset-browser-ui/code/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /asset-browser-ui/code/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/build.gradle -------------------------------------------------------------------------------- /asset-browser-ui/code/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/proguard-rules.pro -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/androidTest/java/com/adobe/assetbrowserui/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/androidTest/java/com/adobe/assetbrowserui/ApplicationTest.java -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/java/com/adobe/assetbrowserui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/java/com/adobe/assetbrowserui/MainActivity.java -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/java/com/adobe/assetbrowserui/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/java/com/adobe/assetbrowserui/MainApplication.java -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /asset-browser-ui/code/app/src/test/java/com/adobe/assetbrowserui/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/app/src/test/java/com/adobe/assetbrowserui/ExampleUnitTest.java -------------------------------------------------------------------------------- /asset-browser-ui/code/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/build.gradle -------------------------------------------------------------------------------- /asset-browser-ui/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/gradle.properties -------------------------------------------------------------------------------- /asset-browser-ui/code/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /asset-browser-ui/code/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /asset-browser-ui/code/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/gradlew -------------------------------------------------------------------------------- /asset-browser-ui/code/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/asset-browser-ui/code/gradlew.bat -------------------------------------------------------------------------------- /asset-browser-ui/code/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /documentation/adobe-creative-sdk-for-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/adobe-creative-sdk-for-android.md -------------------------------------------------------------------------------- /documentation/app-submission-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/app-submission-guidelines.md -------------------------------------------------------------------------------- /documentation/asset-browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/asset-browser.md -------------------------------------------------------------------------------- /documentation/branding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/branding-guidelines.md -------------------------------------------------------------------------------- /documentation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/changelog.md -------------------------------------------------------------------------------- /documentation/class-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/class-references.md -------------------------------------------------------------------------------- /documentation/framework-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/framework-dependencies.md -------------------------------------------------------------------------------- /documentation/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/getting-started.md -------------------------------------------------------------------------------- /documentation/references/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/allclasses-frame.html -------------------------------------------------------------------------------- /documentation/references/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/allclasses-noframe.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceAddProjectWorkflowOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceAddProjectWorkflowOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceCustomizationOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceCustomizationOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceEditProfileOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceEditProfileOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceProjectDraftOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceProjectDraftOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehancePublishInvalidImageException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehancePublishInvalidImageException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSDKAbstractPublishOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSDKAbstractPublishOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSDKPublishProjectOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSDKPublishProjectOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSearchProjectOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceSearchProjectOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeBehanceUpdateProfileOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeBehanceUpdateProfileOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/AdobeUXBehanceWorkflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/AdobeUXBehanceWorkflow.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/BehanceSDKSecurityException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/BehanceSDKSecurityException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceADDProjectModuleListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceADDProjectModuleListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceCreateProjectDraftListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceCreateProjectDraftListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceGetCreativeFieldsListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceGetCreativeFieldsListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceProjectPublishListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceProjectPublishListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKEditProfileListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKEditProfileListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKGetUserProfileListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKGetUserProfileListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKPublishProjectResultIntentExtras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSDKPublishProjectResultIntentExtras.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSearchProjectListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceSearchProjectListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceUpdateProfileListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/IAdobeBehanceUpdateProfileListener.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/behance/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/behance/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/AdobeCSDKFoundation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/AdobeCSDKFoundation.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/IAdobeGenericCompletionCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/IAdobeGenericCompletionCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/IAdobeGenericErrorCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/IAdobeGenericErrorCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/applibrary/AdobeAppLibraryLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/applibrary/AdobeAppLibraryLauncher.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/applibrary/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/applibrary/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/applibrary/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/applibrary/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/applibrary/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/applibrary/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.AdobeAuthStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.AdobeAuthStatus.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.IAdobeAuthStatusCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.IAdobeAuthStatusCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionHelper.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionLauncher.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionLauncher.Builder.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthSessionLauncher.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthUserProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeAuthUserProfile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeClientScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeClientScope.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/AdobeUXAuthManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/AdobeUXAuthManager.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/IAdobeAuthClientCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/IAdobeAuthClientCredentials.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/auth/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/auth/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/network/AdobeNetworkException.AdobeNetworkErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/network/AdobeNetworkException.AdobeNetworkErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/network/AdobeNetworkException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/network/AdobeNetworkException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/network/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/network/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/network/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/network/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/network/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/network/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeCreativeCloudApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeCreativeCloudApplication.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopApplication.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/AdobeSendToDesktopException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/IAdobeSendToDesktopCallBack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/IAdobeSendToDesktopCallBack.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/sendtodesktop/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetCompFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetCompFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceFilter.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceFilterType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceFilterType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDataSourceType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemFilter.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemFilterType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemFilterType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDesignLibraryItemType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDrawFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetDrawFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFileExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFileExtensions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFileRenditionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFileRenditionType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolder.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolderOrderBy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolderOrderBy.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolderOrderDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetFolderOrderDirection.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetIllustratorFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetIllustratorFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetImageDimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetImageDimensions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibrary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorMode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorThemeMood.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorThemeMood.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorThemeRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorThemeRule.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryColorType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DLight.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DMaterial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DMaterial.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItem3DModel.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemAnimation.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemBrush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemBrush.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemColor.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemColorTheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemColorTheme.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemImage.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemLook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemLook.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemPattern.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemStockImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemStockImage.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetLibraryItemTemplate.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMIMETypeFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMIMETypeFilter.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMIMETypeFilterType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMIMETypeFilterType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMimeTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetMimeTypes.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSDFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSDFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSFixFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSFixFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSMixFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPSMixFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackage.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackagePages.AdobeAssetPackageSharedProjectType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackagePages.AdobeAssetPackageSharedProjectType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackagePages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetPackagePages.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetSharedProject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetSharedProject.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetSketchbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeAssetSketchbook.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCollaborationRoleType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCollaborationRoleType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCollaborationType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCollaborationType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCommunityAssetImageDimension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeCommunityAssetImageDimension.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeDesignLibraryUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeDesignLibraryUtils.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryComposite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryComposite.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryDelegate.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryDownloadPolicyType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryDownloadPolicyType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryElement.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryElementFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryElementFilter.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryManager.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryRepresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryRepresentation.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryStartupOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibraryStartupOptions.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibrarySyncStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeLibrarySyncStatus.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDComposite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDComposite.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDCompositeBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDCompositeBranch.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDCompositeMutableBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDCompositeMutableBranch.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDLayerComp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDLayerComp.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDLayerNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDLayerNode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDMutableLayerComp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDMutableLayerComp.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDMutableLayerNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDMutableLayerNode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDRGBColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePSDRGBColor.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhoto.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAsset.AdobePhotoAssetType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAsset.AdobePhotoAssetType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRendition.AdobePhotoAssetRenditionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRendition.AdobePhotoAssetRenditionType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRendition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRendition.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRevision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoAssetRevision.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCatalog.AdobePhotoCatalogType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCatalog.AdobePhotoCatalogType.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCatalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCatalog.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.AdobePhotoCollectionFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.AdobePhotoCollectionFlag.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.AdobePhotoCollectionSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.AdobePhotoCollectionSort.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.PhotoCollectionDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.PhotoCollectionDetails.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoCollection.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobePhotoPage.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelection.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionAssetFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionAssetFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionCompFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionCompFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionDrawAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionDrawAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionLibraryAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionLibraryAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPSFixFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPSFixFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPSMixFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPSMixFile.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPhotoAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionPhotoAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionSketchAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeSelectionSketchAsset.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowser.ResultProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowser.ResultProvider.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowser.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowserConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowserConfiguration.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowserOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/AdobeUXAssetBrowserOption.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeAssetFolderNextPageCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeAssetFolderNextPageCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeCancelCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeCancelCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeGenericRequestCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeGenericRequestCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobePhotoAssetsListRequestCompletionHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobePhotoAssetsListRequestCompletionHandler.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeProgressCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeProgressCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeRequestCompletionCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/IAdobeRequestCompletionCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/foundation/storage/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/foundation/storage/package-tree.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitException.ErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitException.ErrorCode.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.FontFilePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.FontFilePath.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.ITypekitCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.ITypekitCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFont.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontBrowser.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontFamily.ITypekitCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontFamily.ITypekitCallback.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontFamily.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitFontFamily.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/AdobeTypekitManager.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/TypekitNotification.Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/TypekitNotification.Event.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/TypekitNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/TypekitNotification.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/UserNotAuthenticatedException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/UserNotAuthenticatedException.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/package-frame.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/package-summary.html -------------------------------------------------------------------------------- /documentation/references/com/adobe/creativesdk/typekit/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/com/adobe/creativesdk/typekit/package-tree.html -------------------------------------------------------------------------------- /documentation/references/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/constant-values.html -------------------------------------------------------------------------------- /documentation/references/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/deprecated-list.html -------------------------------------------------------------------------------- /documentation/references/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/help-doc.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-1.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-10.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-11.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-12.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-13.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-14.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-15.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-16.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-17.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-18.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-19.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-2.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-20.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-21.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-3.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-4.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-5.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-6.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-7.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-8.html -------------------------------------------------------------------------------- /documentation/references/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index-files/index-9.html -------------------------------------------------------------------------------- /documentation/references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/index.html -------------------------------------------------------------------------------- /documentation/references/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/overview-frame.html -------------------------------------------------------------------------------- /documentation/references/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/overview-summary.html -------------------------------------------------------------------------------- /documentation/references/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/overview-tree.html -------------------------------------------------------------------------------- /documentation/references/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/package-list -------------------------------------------------------------------------------- /documentation/references/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/script.js -------------------------------------------------------------------------------- /documentation/references/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/serialized-form.html -------------------------------------------------------------------------------- /documentation/references/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/references/stylesheet.css -------------------------------------------------------------------------------- /documentation/send-to-desktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/send-to-desktop.md -------------------------------------------------------------------------------- /documentation/typekit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/typekit.md -------------------------------------------------------------------------------- /documentation/user-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/documentation/user-auth.md -------------------------------------------------------------------------------- /getting-started/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/.gitignore -------------------------------------------------------------------------------- /getting-started/code/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /getting-started/code/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/build.gradle -------------------------------------------------------------------------------- /getting-started/code/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/proguard-rules.pro -------------------------------------------------------------------------------- /getting-started/code/app/src/androidTest/java/com/adobe/gettingstarted/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/androidTest/java/com/adobe/gettingstarted/ApplicationTest.java -------------------------------------------------------------------------------- /getting-started/code/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/java/com/adobe/gettingstarted/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/java/com/adobe/gettingstarted/MainActivity.java -------------------------------------------------------------------------------- /getting-started/code/app/src/main/java/com/adobe/gettingstarted/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/java/com/adobe/gettingstarted/MainApplication.java -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /getting-started/code/app/src/test/java/com/adobe/gettingstarted/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/app/src/test/java/com/adobe/gettingstarted/ExampleUnitTest.java -------------------------------------------------------------------------------- /getting-started/code/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/build.gradle -------------------------------------------------------------------------------- /getting-started/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/gradle.properties -------------------------------------------------------------------------------- /getting-started/code/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /getting-started/code/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /getting-started/code/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/gradlew -------------------------------------------------------------------------------- /getting-started/code/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/getting-started/code/gradlew.bat -------------------------------------------------------------------------------- /getting-started/code/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/readme.md -------------------------------------------------------------------------------- /send-to-desktop-api/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/.gitignore -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/build.gradle -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/proguard-rules.pro -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/androidTest/java/com/adobe/sendtodesktopapi/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/androidTest/java/com/adobe/sendtodesktopapi/ApplicationTest.java -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/java/com/adobe/sendtodesktopapi/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/java/com/adobe/sendtodesktopapi/MainActivity.java -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/java/com/adobe/sendtodesktopapi/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/java/com/adobe/sendtodesktopapi/MainApplication.java -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /send-to-desktop-api/code/app/src/test/java/com/adobe/sendtodesktopapi/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/app/src/test/java/com/adobe/sendtodesktopapi/ExampleUnitTest.java -------------------------------------------------------------------------------- /send-to-desktop-api/code/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/build.gradle -------------------------------------------------------------------------------- /send-to-desktop-api/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/gradle.properties -------------------------------------------------------------------------------- /send-to-desktop-api/code/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /send-to-desktop-api/code/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /send-to-desktop-api/code/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/gradlew -------------------------------------------------------------------------------- /send-to-desktop-api/code/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/send-to-desktop-api/code/gradlew.bat -------------------------------------------------------------------------------- /send-to-desktop-api/code/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /typekit-ui/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/.gitignore -------------------------------------------------------------------------------- /typekit-ui/code/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typekit-ui/code/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/build.gradle -------------------------------------------------------------------------------- /typekit-ui/code/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/proguard-rules.pro -------------------------------------------------------------------------------- /typekit-ui/code/app/src/androidTest/java/com/adobe/typekitui/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/androidTest/java/com/adobe/typekitui/ApplicationTest.java -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/java/com/adobe/typekitui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/java/com/adobe/typekitui/MainActivity.java -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/java/com/adobe/typekitui/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/java/com/adobe/typekitui/MainApplication.java -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /typekit-ui/code/app/src/test/java/com/adobe/typekitui/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/app/src/test/java/com/adobe/typekitui/ExampleUnitTest.java -------------------------------------------------------------------------------- /typekit-ui/code/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/build.gradle -------------------------------------------------------------------------------- /typekit-ui/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/gradle.properties -------------------------------------------------------------------------------- /typekit-ui/code/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /typekit-ui/code/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /typekit-ui/code/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/gradlew -------------------------------------------------------------------------------- /typekit-ui/code/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/typekit-ui/code/gradlew.bat -------------------------------------------------------------------------------- /typekit-ui/code/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /user-auth-ui/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/.gitignore -------------------------------------------------------------------------------- /user-auth-ui/code/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /user-auth-ui/code/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/build.gradle -------------------------------------------------------------------------------- /user-auth-ui/code/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/proguard-rules.pro -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/androidTest/java/com/adobe/userauthui/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/androidTest/java/com/adobe/userauthui/ApplicationTest.java -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/java/com/adobe/userauthui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/java/com/adobe/userauthui/MainActivity.java -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/java/com/adobe/userauthui/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/java/com/adobe/userauthui/MainApplication.java -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /user-auth-ui/code/app/src/test/java/com/adobe/userauthui/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/app/src/test/java/com/adobe/userauthui/ExampleUnitTest.java -------------------------------------------------------------------------------- /user-auth-ui/code/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/build.gradle -------------------------------------------------------------------------------- /user-auth-ui/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/gradle.properties -------------------------------------------------------------------------------- /user-auth-ui/code/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /user-auth-ui/code/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /user-auth-ui/code/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/gradlew -------------------------------------------------------------------------------- /user-auth-ui/code/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeSDK/android-getting-started-samples/HEAD/user-auth-ui/code/gradlew.bat -------------------------------------------------------------------------------- /user-auth-ui/code/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------