• PRODUCT

    PRODUCT

  • PRICING
    PRICING

  • HELP
    HELP

  • BLOG
    BLOG

  • APPSTORE
    APPSTORE

  • COMPANY
    COMPANY

  • LEGAL
    LEGAL

  • LOGIN
    LOGIN

  • Workflow Automation

    Workflow Automation

  • AI Assisted Content Management System
    AI Assisted Content Management System

  • Analytics & Lead Generation
    Analytics & Lead Generation

  • Automation Projects
    Automation Projects

  • Browser Extension Apps
    Browser Extension Apps

  • Dashboard Theme Analysis: LN1
    Dashboard Theme Analysis: LN1

  • Data Exchange Automation Tools
    Data Exchange Automation Tools

  • Getting Started With Building Hybrid Apps
    Getting Started With Building Hybrid Apps

  • Izyware Hybrid UX Design Guidelines
    Izyware Hybrid UX Design Guidelines

  • Onboarding New Organizations Using Izyware
    Onboarding New Organizations Using Izyware

  • Quick Visualization and Monitoring
    Quick Visualization and Monitoring

  • Unified Metrics Stream Pipeline
    Unified Metrics Stream Pipeline

  • Legacy Features and Backward Compatibility
    Legacy Features and Backward Compatibility

  • How does the legacy frame architecture work
    How does the legacy frame architecture work

  • Izyware Legacy UI Circus Engine
    Izyware Legacy UI Circus Engine

  • Case Studies and Knowledge Center
    Case Studies and Knowledge Center

  • Angular and React Embedding Guide
    Angular and React Embedding Guide

  • Build and deploy a content distribution app in less than five minutes: Part II
    Build and deploy a content distribution app in less than five minutes: Part II

  • Comparison of CSS Preprocessors SASS vs LESS vs STYLUS
    Comparison of CSS Preprocessors SASS vs LESS vs STYLUS

  • Comparison of node.js test frameworks and utilities: lab, chai, sinon
    Comparison of node.js test frameworks and utilities: lab, chai, sinon

  • Manage and automate your day to day business tools using IzyCloud Tasks: Part I
    Manage and automate your day to day business tools using IzyCloud Tasks: Part I

  • MySql Performance Optimization
    MySql Performance Optimization

  • Onboarding Tutorial: Creating & publishing an app
    Onboarding Tutorial: Creating & publishing an app

  • Rebranding and Customizing Websites
    Rebranding and Customizing Websites

  • Using IzyCloud on Android: IzyCloud Query App
    Using IzyCloud on Android: IzyCloud Query App

  • Technical Resources
    Technical Resources

  • .NET SDKCore IzyWare
    .NET SDKCore IzyWare

  • av-stream README
    av-stream README

  • ElasticSearch IzyWare Data Console Feature
    ElasticSearch IzyWare Data Console Feature

  • End To End Testing
    End To End Testing

  • End To End Testing, Part II
    End To End Testing, Part II

  • frames and nav (ui/w/shell/navmulti) README
    frames and nav (ui/w/shell/navmulti) README

  • izy-circus README
    izy-circus README

  • izy-idman-tools README
    izy-idman-tools README

  • izy-pop3 README
    izy-pop3 README

  • izy-proxy README
    izy-proxy README

  • izy-sync README
    izy-sync README

  • IzyIDE README
    IzyIDE README

  • izymodtask readme
    izymodtask readme

  • IzyShell readme
    IzyShell readme

  • ReKey Feature Package README for IzyWare SQL Console
    ReKey Feature Package README for IzyWare SQL Console

  • Single Sign-On (SSO) README
    Single Sign-On (SSO) README

  • Tasks Migration : V5 guidelines
    Tasks Migration : V5 guidelines

  • Users & Groups README
    Users & Groups README

  • V5 Migration : apps/pulse guidelines README
    V5 Migration : apps/pulse guidelines README

  • Container Orchestration
    Container Orchestration

  • Izy Kubernetes Internal Networking Troubleshooting
    Izy Kubernetes Internal Networking Troubleshooting

  • Application Hosting
    Application Hosting

  • Content Publisher
    Content Publisher

  • Domain Registration
    Domain Registration

  • Email Hosting
    Email Hosting

  • Izyware Browser Extension
    Izyware Browser Extension

  • Izyware Deployment Engine
    Izyware Deployment Engine

  • Izyware Session Management
    Izyware Session Management

  • Messaging System APIs and functionality
    Messaging System APIs and functionality

  • Single SignOn
    Single SignOn

  • Integration APIs
    Integration APIs

  • iOS SDK
    iOS SDK

  • Azure and .NET
    Azure and .NET

  • izy-devops
    izy-devops

  • << Rebranding and Customizing Websites
    << Rebranding and Customizing Websites

  • Technical Resources >>
    Technical Resources >>

  • Using IzyCloud on Android: IzyCloud Query App

  • In this article we will discuss the IzyCloud SDK for android. Using the SDK you can turn the android device into a node in your IzyCloud environment that can be queries and have data exported in and out from. You can then feed the Data into the machine learning modules to generate insights. The data might include text messages, MMS content, etc.

  • Tools

    We will discuss two of the most popular options: Andoid Studio using Java and Cordova.

    Android Studio Using Java

    We have published the project on github. Please see: Android IzyQuery

    Setup Cordova Build Environment

    Install The Components

    cordova build
    Cordova Issues
    If you are using cordova to embed the IzyCloud into your app, you may have to make sure packages are setup correctly:

    cordova requirements

    You will require:

    1. "SDK Platform" for API level android-26

    2. "Android SDK Platform-tools (latest)

    3. "Android SDK Build-tools" (latest)

    Then do:

    ~/Library/Android/sdk/tools/bin/sdkmanager "platforms;android-26"

    ~/Library/Android/sdk/tools/bin/sdkmanager --list

    Test on Emulator

    From the Android Studio, launch the AVD tool and create a virtual device. Then launch the virtual device and make sure it is running. Then:

    cordova build; cordova emulate android;

    Deploy and Test On Phone

    Prepare the Phone

    - Enable USB debugging mode

    - When you connect the phone you will see:

    Allow USB Debugging?

    This computers RSA fingerprint is ....

    - Just say Yes

    Install the App over USB

    Install the app by:

    adb install app-debug.apk

    AndroidStudioProjects/MyApplicatio... file pushed. 3.3 MB/s (1547866 bytes in 0.451s)

    pkg: /data/local/tmp/app-debug.apk

    Success

    Then

    adb shell am start -a android.intent.action.MAIN -n PACKAGE_NAME/.MainWindow

    This will launch the app window. notice that PACKAGE_NAME will be the package attribute in the AndroidManifest.xml file.

    Android IzyQuery: https://github.com/izyware/android.izyquery

    cordova build: https://cordova.apache.org/docs/en/latest/guide/platforms/android/

    installing-the-requirements