├── settings.gradle ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── app ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_logout.png │ │ │ ├── ic_tasks.png │ │ │ ├── ic_user.png │ │ │ ├── ic_contacts.png │ │ │ └── ic_loading.jpeg │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_logout.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── menu │ │ │ ├── navigation_drawer.xml │ │ │ ├── main_page.xml │ │ │ ├── record_view_page_drawer.xml │ │ │ └── activity_navigation_drawer.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── drawable-v21 │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_slideshow.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_camera.xml │ │ │ └── ic_menu_share.xml │ │ ├── values-w820dp │ │ │ ├── dimens.xml │ │ │ └── drawables.xml │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── layout │ │ │ ├── list_activity.xml │ │ │ ├── activity_main.xml │ │ │ ├── content_navigation_drawer.xml │ │ │ ├── home_calendar.xml │ │ │ ├── app_bar_navigation_drawer.xml │ │ │ ├── list_item.xml │ │ │ ├── activity_home.xml │ │ │ ├── records_list.xml │ │ │ ├── nav_header_navigation_drawer.xml │ │ │ ├── record_view_page.xml │ │ │ ├── activity_navigation_drawer.xml │ │ │ ├── module_tab.xml │ │ │ └── home_activity.xml │ │ └── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── android_kotlin_sample_app │ │ │ ├── DataHandler.kt │ │ │ ├── DataProvider.kt │ │ │ ├── HomeActivity.kt │ │ │ └── ListActivity.kt │ │ └── AndroidManifest.xml └── build.gradle ├── .gitignore ├── LICENSE ├── gradlew.bat └── gradlew /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Zoho CRM Android SDK Sample App 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/drawable-hdpi/ic_logout.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/drawable-hdpi/ic_tasks.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/drawable-hdpi/ic_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-hdpi/ic_logout.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/drawable-hdpi/ic_contacts.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_loading.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/drawable-hdpi/ic_loading.jpeg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Android-SDK-Sample-App/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/java/com/example/android_kotlin_sample_app/DataHandler.kt: -------------------------------------------------------------------------------- 1 | package com.example.android_kotlin_sample_app 2 | 3 | import android.graphics.Bitmap 4 | 5 | interface DataHandler { 6 | fun setUserName(userName: String) 7 | fun setOrganizationName(organizationName: String) 8 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Aug 28 16:54:54 IST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /gradle.properties 4 | /local.properties 5 | /.idea/workspace.xml 6 | /.idea/libraries 7 | .DS_Store 8 | /build 9 | app/build 10 | /captures 11 | app/roguard-rules.pro 12 | out/ 13 | .idea/ 14 | app/src/main/res/drawable/ 15 | .gitignore.swp 16 | app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/menu/navigation_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main_page.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #5b8ba3 5 | #5b8ba3 6 | #5b8ba3 7 | #277F9C 8 | #277F9C 9 | #0b5e7a 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 16dp 7 | 160dp 8 | 16dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/list_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ___VARIABLE_AppName___ 3 | ___VARIABLE_AppName___ 4 | 5 | Open navigation drawer 6 | Close navigation drawer 7 | 8 | Contacts 9 | Tasks 10 | Welcome 11 | TODO 12 | 13 | ___VARIABLE_RedirectURLScheme___:// 14 | ___VARIABLE_URLScheme___ 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | @android:drawable/ic_menu_send 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |