├── README.md ├── android ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── .DS_Store │ │ │ │ ├── ic_user.png │ │ │ │ ├── ic_logout.png │ │ │ │ ├── ic_tasks.png │ │ │ │ ├── ic_contacts.png │ │ │ │ └── ic_loading.jpeg │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_logout.png │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── menu │ │ │ │ └── main_page.xml │ │ │ └── layout │ │ │ │ ├── list_activity.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── list_item.xml │ │ │ │ ├── module_tab.xml │ │ │ │ └── home_activity.xml │ │ │ ├── assets │ │ │ └── app_configuration.properties │ │ │ ├── java │ │ │ └── src │ │ │ │ └── simple_app │ │ │ │ ├── DataHandler.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── DataProvider.java │ │ │ │ ├── HomeActivity.java │ │ │ │ └── ListActivity.java │ │ │ └── AndroidManifest.xml │ ├── proguard-rules.pro │ └── build.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── iOS ├── ZCRMSwiftAppTemplate │ ├── ZCRMSwiftAppTemplate │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── tasks.imageset │ │ │ │ ├── tasks_1.png │ │ │ │ └── Contents.json │ │ │ ├── userAvatar.imageset │ │ │ │ ├── use.png │ │ │ │ └── Contents.json │ │ │ ├── logoutIcon.imageset │ │ │ │ ├── close.png │ │ │ │ └── Contents.json │ │ │ ├── contacts.imageset │ │ │ │ ├── icons8-contacts-480.png │ │ │ │ └── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Bridging-Header.h │ │ ├── ViewController.swift │ │ ├── AppConfiguration.plist │ │ ├── ListViewController.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── HomeViewController.swift │ │ └── AppDelegate.swift │ └── ZCRMSwiftAppTemplate.xcodeproj │ │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── project.pbxproj ├── ZCRMiOS-umbrella.h ├── ZCRM │ ├── ViewController.swift │ ├── AppConfiguration.plist │ ├── ListViewController.swift │ ├── Info.plist │ ├── HomeViewController.swift │ ├── AppDelegate.swift │ └── Main.storyboard ├── ZVCRM │ ├── ViewController.swift │ ├── AppConfiguration.plist │ ├── ListViewController.swift │ ├── Info.plist │ ├── HomeViewController.swift │ ├── AppDelegate.swift │ └── Main.storyboard └── Podfile ├── config.json ├── .gitignore └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # ZCRM-Mobile-SDK-Template 2 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/ic_user.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-hdpi/ic_logout.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/ic_logout.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/ic_tasks.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/ic_contacts.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_loading.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/drawable-hdpi/ic_loading.jpeg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "crm" : { 3 | "zcrm" : { 4 | "android" : "1.4.2", 5 | "iOS" : "0.0.1" 6 | }, 7 | "zvcrm" : { 8 | "android" : "1.4.2", 9 | "iOS" : "0.0.0" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/tasks.imageset/tasks_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/tasks.imageset/tasks_1.png -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/userAvatar.imageset/use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/userAvatar.imageset/use.png -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/logoutIcon.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/logoutIcon.imageset/close.png -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/contacts.imageset/icons8-contacts-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoho/ZCRM-Mobile-SDK-Template/master/iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/contacts.imageset/icons8-contacts-480.png -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Mar 24 11:46:49 IST 2019 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-4.10.1-all.zip 7 | -------------------------------------------------------------------------------- /android/app/src/main/assets/app_configuration.properties: -------------------------------------------------------------------------------- 1 | appType=___VARIABLE_APPTYPE___ 2 | mainActivityClass=___VARIABLE_MAINCLASS___ 3 | oauthScopes=___VARIABLE_OAUTHSCOPES___ 4 | apiBaseUrl=https://___VARIABLE_ApiBaseURL___ 5 | #accessType=Production 6 | #domainSuffix=com 7 | #portalID= 8 | #showSignUp=false 9 | #minLogLevel=INFO 10 | -------------------------------------------------------------------------------- /android/app/src/main/java/src/simple_app/DataHandler.java: -------------------------------------------------------------------------------- 1 | package src.simple_app; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | 6 | public interface DataHandler { 7 | 8 | void setUserImage(Bitmap bitmap); 9 | 10 | void setUserName(String userName); 11 | 12 | void setOrganizationName(String organizationName); 13 | } 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | android/.idea/ 2 | android/.gradle/ 3 | android/app/build/ 4 | android/local.properties 5 | android/android.iml 6 | android/app/app.iml 7 | iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate.xcodeproj/project.xcworkspace/xcshareddata/ 8 | iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate.xcodeproj/project.xcworkspace/xcuserdata/ 9 | iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate.xcodeproj/xcuserdata/ 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #5b8ba3 5 | #5b8ba3 6 | #5b8ba3 7 | #277F9C 8 | #277F9C 9 | #0b5e7a 10 | 11 | -------------------------------------------------------------------------------- /iOS/ZCRMiOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #include 14 | FOUNDATION_EXPORT double ZCRMiOSVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ZCRMiOSVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 16dp 7 | 160dp 8 | 16dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/app/src/main/res/menu/main_page.xml: -------------------------------------------------------------------------------- 1 | 4 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/java/src/simple_app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package src.simple_app; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | 7 | public class MainActivity extends AppCompatActivity { 8 | 9 | 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | setContentView(R.layout.activity_main); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /android/app/src/main/res/layout/list_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/logoutIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "close.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/tasks.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tasks_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/userAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "use.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/Assets.xcassets/contacts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-contacts-480.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /iOS/ZCRM/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ZCRMSwiftAppTemplate 4 | // 5 | 6 | import UIKit 7 | 8 | class ViewController: UIViewController { 9 | 10 | 11 | override func viewDidLoad() { 12 | super.viewDidLoad() 13 | // Do any additional setup after loading the view, typically from a nib. 14 | 15 | } 16 | 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /iOS/ZVCRM/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ZCRMSwiftAppTemplate 4 | // 5 | 6 | import UIKit 7 | 8 | class ViewController: UIViewController { 9 | 10 | 11 | override func viewDidLoad() { 12 | super.viewDidLoad() 13 | // Do any additional setup after loading the view, typically from a nib. 14 | 15 | } 16 | 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /iOS/ZCRMSwiftAppTemplate/ZCRMSwiftAppTemplate/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ZCRMSwiftAppTemplate 4 | // 5 | 6 | import UIKit 7 | 8 | class ViewController: UIViewController { 9 | 10 | 11 | override func viewDidLoad() { 12 | super.viewDidLoad() 13 | // Do any additional setup after loading the view, typically from a nib. 14 | 15 | } 16 | 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /android/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 | -------------------------------------------------------------------------------- /iOS/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ZCRMSwiftAppTemplate' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | pod 'ZCRMiOS', :git => 'https://github.com/zoho/CRM-iOSSDK.git' 9 | 10 | # Pods for ZCRMSwiftAppTemplate 11 | 12 | post_install do |installer| 13 | installer.pods_project.targets.each do |target| 14 | target.build_configurations.each do |config| 15 | config.build_settings['ENABLE_BITCODE'] = 'NO' 16 | end 17 | end 18 | end 19 | 20 | end 21 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/vijay-1833/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/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 | -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |