44
Platform 4.0 Meetup Launch Event FOKKE ZANDBERGEN @FokkeZB © 2015 APPCELERATOR, INC. ALL RIGHTS RESERVED

Platform 4.0 Meetup Launch Event

Embed Size (px)

Citation preview

Page 1: Platform 4.0 Meetup Launch Event

Platform  4.0  Meetup Launch  EventFOKKEZANDBERGEN@FokkeZB

©  2015  APPCELERATOR,  INC.  ALL  RIGHTS  RESERVED

Page 2: Platform 4.0 Meetup Launch Event

Our  Program   for  Tonight

Our  Vision:  One  for  AllOur  Solution:  Appcelerator  Platform  4.0

Plans  &  Pricing:  Start  for  FreeMigration  Process

Q&A

Page 3: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 4: Platform 4.0 Meetup Launch Event

OUR  VISION

Page 5: Platform 4.0 Meetup Launch Event

Gartner  Magic  Quadrant  Leader2014  MAGIC  QUADRANT  FOR  MOBILE  APPLICATION  DEVELOPMENT  PLATFORMS

– GARTNER

IBM

KONY

SAP

PEGASYSTEMSADOBE

XAMARIN

TELERIK

SENCHA

SALESFORCE.COM

MICROSTRATEGY

APPLE

MICROSOFT

ORACLE

GOOGLE

DSI

MOTOROLA  SOLUTIONS

EMBARCEDERO

CLICKSOFTWARE

VERIVO  SOFTWARE

CHALLENGERS LEADERS

NICHE  PLAYERS VISIONARIESCOMPLETENESS   OF  VISION

ABILITY  TO  EXEC

UTE

AS  OF  SEPTEMBER  2014

“The  company  has  demonstrated   the  ability  to  respond  quickly   in  a  cohesive,  integrated  manner  to  a  changing  market.”

Page 6: Platform 4.0 Meetup Launch Event

Customer  Benefits  of  the  Appcelerator  PlatformFULL  REPORT  AT  WWW.APPCELERATOR.COM/ROI

Forrester  findings:

40% reduction  in  time-­‐to-­‐market52% decrease  in  delivery  costs75% quicker  time-­‐to-­‐resolution20% reduction  in  employee  turnover491%ROI

!

Page 7: Platform 4.0 Meetup Launch Event

Appcelerator  at  a  GlanceONE  OF  THE  WORLD’S  LARGEST  MOBILE  ECOSYSTEMS

400+ISV  extensions  &  third  party  

modules

100+Proven  solution  partners

Mobile  developers   in  185  countries

300,000,000+Devices  running  Appcelerator-­‐

powered  apps,  to  go  with  100,000+  apps  built  with  Appcelerator.

2,000,000,000+Cloud  API  calls  per  month through  the  

Appcelerator  Platform

700,000+

of  the  Fortune  10070%  

Page 8: Platform 4.0 Meetup Launch Event

OUR  SOLUTION:  APPCELERATOR  PLATFORM  4.0

Page 9: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 10: Platform 4.0 Meetup Launch Event

Dashboard

AnalyticsPush  NotificationsArrow  DB  (ACS)TestingUniversityQ&ADocumentation…

platform.appcelerator.com

Page 11: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 12: Platform 4.0 Meetup Launch Event

Studio

Page 13: Platform 4.0 Meetup Launch Event

STUDIO:  LIVEVIEW

Page 14: Platform 4.0 Meetup Launch Event

Studio:  Profile,  Analyze,  Test

ProfilerCode  AnalyzerTesting*

* Enterprise  Plan  Add-­‐on

Page 15: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 16: Platform 4.0 Meetup Launch Event

CLI:  Unified

$ ti setup

$ ti create$ ti build$ ti <cmd>

$ acs new$ acs run$ acs publish$ acs <cmd>

$ alloy <cmd>

$ appc setup

$ appc new$ appc run$ appc ti <cmd>

$ appc new$ appc run$ appc publish$ appc acs <cmd>

$ appc alloy <cmd>

$ appc use <version>

Unified  CLI

Bundles  Titanium  CLIBundles  ACS  CLIBundles  Alloy  CLI

Works  alongside  globalCLI’s

Page 17: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 18: Platform 4.0 Meetup Launch Event

Titanium:  JavaScript  for  Native  Apps

*

* In  Preview

Ti.UI.createButton();

Page 19: Platform 4.0 Meetup Launch Event

Titanium:  Certified  &  Extended  Releases

Certified,  fully  tested  releases

Fully  QE  tested  &  certifiedPrevent  use  of  app  debuggingPrevent  use  of  rooted  devices

Additional  Modules *

SQLite  Database  EncryptionCrypto  ModuleGeofenceHTTPS  with  SSL  PinningLDAP

*Team  &  Enterprise  Plans  Only

Page 20: Platform 4.0 Meetup Launch Event

Titanium:  Open  Source

Titanium  CLI  via  NPMTitanium  SDK  via  nightly  builds

Develop  &  Publish

Source  code  remains  on  GitHubNo  proprietary  Appcelerator  forkPRs  welcome  as  ever

www.appcelerator.org

Page 21: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 22: Platform 4.0 Meetup Launch Event

Alloy:  Open  Source

Alloy  via  NPMPlugs  into  Titanium  CLI

Source  code  remains  on  GitHubNo  proprietary  Appcelerator  forkPRs  welcome  as  ever

www.appcelerator.org

Page 23: Platform 4.0 Meetup Launch Event

Alloy:  MVC  for  Titanium

<Alloy><Window>

<Label onClick=”open”>Hello World</Label></Window>

</Alloy>

”Window”: {backgroundColor: “white”

}

function open() {alert(“Hello World”);

}$.index.open();

var window = Ti.UI.createWindow({backgroundColor: “white”

});

var label = Ti.UI.createLabel({text: “Hello World”

});

label.addEventListener(“click”,function() {

alert(“Hello World”);});

window.add(label);window.open();

Page 24: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 25: Platform 4.0 Meetup Launch Event

Arrow:  DB

Integrated  in  new  platform  dashboardSend  push,  manage  data,  connect  apps

Page 26: Platform 4.0 Meetup Launch Event

Arrow:  New  &  Improved

formerly

ACS

formerly

Node.ACS

NEW

Push  notifications

Prebuilt  services

Schema-­‐less  data  store

Hosting  Arrow  Builder  apps

Opinionated   framework  for  building  APIs  &  front-­‐ends

Connector  marketplace

Visual  model  builder *Team  &  Enterprise  Plans  Only

ArrowDBArrow  Push

Arrow  Builder  *

Page 27: Platform 4.0 Meetup Launch Event

ARROW:  BUILDER

Page 28: Platform 4.0 Meetup Launch Event

Marketplace

Download  Arrow  connectors

Will  soon  include  Titanium  modules  &  Alloy  widgetsWill  replace  old  Marketplace

Page 29: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 30: Platform 4.0 Meetup Launch Event

ANALYTICS

Page 31: Platform 4.0 Meetup Launch Event

Analytics:  Insights*

*Team  &  Enterprise  Plans  Only

Page 32: Platform 4.0 Meetup Launch Event

Analytics:  Performance  &  Crashes*

* Enterprise  Plan  Only

Page 33: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 34: Platform 4.0 Meetup Launch Event

Support

Integrated  DocumentationAppcelerator  UniversityAll  new  integrated  Q&AWeb  &  Hotline  Available  (Team+)

Page 35: Platform 4.0 Meetup Launch Event

Support:  University

Page 36: Platform 4.0 Meetup Launch Event

Support:  Q&A

Page 37: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 38: Platform 4.0 Meetup Launch Event

Plans  &  Pricing:  Free  for  Existing  Community

FREE**Indie  Seat  for  life  if  you  signup  with  an  email  address  that  already  holds  a  Titanium  account.

Page 39: Platform 4.0 Meetup Launch Event

ENTERPRISE

Plans  &  Pricing:  Terminology

INDIE DEVELOPERTEAM

Page 40: Platform 4.0 Meetup Launch Event

Plans  &  Pricing:  FeaturesDEVELOPER INDIE TEAM ENTERPRISE

free $39/month/seat $259/month/seat custom

develop only +  publish +  publish +  publish

premium  modules premium  modules

MDM/MAM

SOASTA  (option)

1M +  5GB  /  seat 10M +  10GB  /  seat custom

Arrow DB +  Arrow  Builder +  Arrow  Builder

30  days  /  500K  events 12 months  /  2M  events custom

+  analytics  export &  app +  performance  &  crashes

SLA custom  hosting

Q&A Q&A web  support hotline

Page 41: Platform 4.0 Meetup Launch Event

Our  VisionOur  Solution

DashboardStudioCLITitanium  SDKAlloy  MVCArrowAnalyticsSupport

Plans  &  PricingMigration  Process

Page 42: Platform 4.0 Meetup Launch Event

Migration  Process:  GA

Before  September  1st:

Titanium:  Import  in  AppCStudio  or  via  CLI  and  do  not  let  it  replace  keys  if  you  already  used  ACS.Node.ACS:  Republish  to  Arrow  Cloud  and  change  your  CNAME  or  update  your  app  with  new  URL.ACS:  Contact  support  or  wait  for  automated  migration.  Endpoint  and  keys  remain  same.

web.appcelerator.com/product/migrate-­‐app

Page 43: Platform 4.0 Meetup Launch Event

Thank  YouFOKKEZANDBERGEN@FokkeZB

Page 44: Platform 4.0 Meetup Launch Event

Q&Acommunity.appcelerator.com

developer.appcelerator.com/questions