Cross-Plattform Apps mit

Größe: px
Ab Seite anzeigen:

Download "Cross-Plattform Apps mit"

Transkript

1 efficiency. we set IT up. Cross-Plattform Apps mit // // Werner Steinbinder // doubleslash // // doubleslash 1

2 Über mich > Werner Steinbinder > Student für Angewandte Informatik im 7. Semester an der Hochschule Ravensburg-Weingarten > Seit September 2016 Praktikant bei doubleslash Net-Business GmbH > > // doubleslash 2

3 1. Was ist Xamarin? 2. Xamarin vs Cordova 3. Live Entwicklung einer Xamarin App 4. Fazit & Ausblick // doubleslash 3

4 Was ist? [1] > Entwickler von Mono gründeten 2011 Xamarin > Xamarin wurde im März 2016 von Microsoft übernommen > Anfangs kostenpflichtig nun aber kostenlos verfügbar // doubleslash 4

5 Was ist? > Framework zur Erstellung nativer Cross-Plattform Apps > Android, ios, Windows Phone > MacOS, UWP > Baut auf dem.net Framework auf > 60%-100% des Codes muss nur einmal geschrieben werden und läuft unter allen Plattformen > Implementierung des UI mit XAML > UI Entwicklung auch mit C# möglich entspricht aber nicht den Best practice Beispielen > Implementierung von Logik/Backend mit C# // doubleslash 5

6 Was ist? // doubleslash 6

7 Was ist? Setup > XCode > ios SDK > Xamarin > Windows 8/8.1/10 > Visual Studio > Xamarin > Windows Phone 8/8.1/10 SDK > Android SDK > Emulator // doubleslash 7

8 Was ist? Setup // doubleslash 8

9 Was ist? Xamarin.Forms > Plattformübergreifendes UI-Toolkit > Native Benutzeroberfläche [3] // doubleslash 9

10 Was ist? [3] > Verschiedene Pages > ContentPage, NavigationPage, // doubleslash 10

11 Was ist? [3] > Verschiedene Layouts > StackLayout, GridLayout, ScrollView,. // doubleslash 11

12 Was ist? [3] > Verschiedene Controls > Button, Entry, Label, Picker, // doubleslash 12

13 Was ist? <ContentPage> <StackLayout> <Entry/> <Entry/> <Button Text="LOGIN"/> </StackLayout> </ContentPage> // doubleslash 13

14 Was ist? Code Behind // doubleslash 14

15 Was ist? Backend // doubleslash 15

16 Was ist? Noch mehr Backend aufteilen [11] // doubleslash 16

17 Was ist? Backend // doubleslash 17

18 Was ist? Portable Class Librarys (PCL) vs Shared Projects // doubleslash 18

19 Was ist? Shared Projects > Compiler-Direktive nötig [3] // doubleslash 19

20 Was ist? Compiler-Direktive > var path = "unknown"; > > #if WINDOWS_PHONE > path = "windowsphone"; > #else > > #if ANDROID > path = "android"; > #else > > #if IOS > path = "ios"; > #else [3] // doubleslash 20

21 Was ist? Shared Projects > In kleineren Projekten brauchbar > In umfangreicheren Projekten zu unübersichtlich und kompliziert [3] // doubleslash 21

22 Was ist? Portable Class Library (PCL) > Keine Compiler-Direktiven nötig > Leichter zu pflegen und zu testen > Code lesbarer > Plattformspezifische Implementierungen direkt im nativen Projekt [8] // doubleslash 22

23 Was ist? UI Anpassung auf verschiedene Geräte > Drei Möglichkeiten > Layouts > Code Behind > OnPlatform // doubleslash 23

24 Was ist? Layouts > UI über XAML erstellen und Layout Container erledigen beim Skalieren den Rest > Nur feste Pixelwerte angeben, wenn es nötig ist, besser vorgefertigte Attribute verwenden > Layout Container werden dadurch nicht in ihrer Größe beschränkt > Abhängig von ihren Kindelementen können sich Layout Container automatisch anpassen // doubleslash 24

25 Was ist? Layouts <StackLayout HorizontalOptions="FillAndExpand" Orientation="Vertical"> <Entry/> <Entry/> <Button Text= "LOGIN"/> </StackLayout> // doubleslash 25

26 Was ist? Layouts > HorizontalOptions="FillAndExpand" > Die Elemente in diesem Layout werden über die ganze verfügbare Breite des Bildschirms skaliert > Orientation="Vertical" > Alle Elemente in diesem Layout vertikal zueinander anordnen > Skalierung erfolgt hier durch vorgefertigte Attribute von Xamarin.Forms nicht durch feste Pixelwerte Layout Feste Pixelwerte // doubleslash 26

27 Was ist? Code Behind > UI Elemente über C# Code an das Display anpassen > Werte können dabei aus dem Gerät ausgelesen werden > Brauchbare Methode, orientiert sich allerdings nicht an den Best Practice Beispielen > Eignet sich erst, sobald man per XAML an die Grenzen stößt und ein gewisses Feintuning benötigt // doubleslash 27

28 Was ist? OnPlatform > Sollte nur bewusst verwendet werden > OnPlatform lässt sich auf viele Attribute (Größe, Farbe, etc.) wie auch auf fast alle UI Elemente anwenden > Durch feste Pixelwerte wird die Größe für UI Elemente unter Android, Windows Phone und ios festgelegt > Feste Pixelwerte zu vergeben ist genau das, was man vermeiden sollte // doubleslash 28

29 Was ist? OnPlatform <Button.WidthRequest> <OnPlatform x:typearguments="x:double" Android="110" WinPhone="150" ios="110" /> </Button.WidthRequest> // doubleslash 29

30 1. Was ist Xamarin? 2. Xamarin vs Cordova 3. Live Entwicklung einer Xamarin App 4. Fazit & Ausblick // doubleslash 30

31 vs Was ist Cordova? > Framework zur Erstellung hybrider mobiler Apps > Keine nativen Apps, da UI über Webtechnologien erstellt wird > Keine Web-App an sich, da sie in einem nativen Rahmen eingebettet wird > Implementierung mit HTML 5, CSS 3 und JavaScript > Frameworks wie Angular oder Bootstrap verwendbar > Plugins ermöglichen Zugriff auf Gerätefunktionen // doubleslash 31

32 vs vs [9] [10] // doubleslash 32

33 vs Anforderungen für Cloud App Anforderungen Cordova Xamarin Login Dateien uploaden (Zugriffsrechte für Dateien auf dem Device) Dateien downloaden (Tabellarische) Darstellung der hochgeladenen Dateien Dateien betrachten Dateien Löschen Link/ versenden Menü mit diversen Einstellungen Synchronisieren performant, schnell // doubleslash 33

34 vs // doubleslash 34 [5]

35 vs ios App Performance ipad Air 2 iphone 6 C++ ios 0,228 0,392 Swift ios 0,322 0,427 Xamarin ios 0,445 0,490 J2ObjC ios 0,650 0,691 Objective C-iOS 0,676 0,745 // doubleslash 35 [5]

36 vs // doubleslash 36 [5]

37 vs Android App Performance HTC Nexus 9 Moto X (2014) C++ Android 0,461 1,265 Xamarin Android 1,120 2,942 Java Android 1,169 2,948 // doubleslash 37 [5]

38 vs Cordova > Pro > Gute Dokumentation > JavaScript kann evtl. teilweise von Desktopversion übernommen werden > UI lässt sich einfacher nach eigenen Wünschen gestalten > Con > Kein natives UI > Schwierigkeiten bei ios Version <5.1.1 und Android Version <4.4 > Schwache Performance // doubleslash 38

39 1. Was ist Xamarin? 2. Xamarin vs Cordova 3. Live Entwicklung einer Xamarin App 4. Fazit & Ausblick // doubleslash 39

40 1. Was ist Xamarin? 2. Xamarin vs Cordova 3. Live Entwicklung einer Xamarin App 4. Fazit & Ausblick // doubleslash 40

41 Fazit & Ausblick > Pro > Es lässt sich mit Xamarin.Forms schnell ein brauchbarer Prototyp für alle 3 Plattformen entwickeln > Entwicklung mit XAML nicht besonders schwierig > UI sieht auf jeder Plattform nativ aus und läuft performant > Gute Community. Gute Hilfe im Xamarin Forum > Xamarin wird von Microsoft vorangetrieben // doubleslash 41

42 Fazit & Ausblick > Con > Einrichtung lang, aufwendig und speicherintensiv. > Setup an sich fehleranfällig bei Verwendung unterschiedlicher Versionen oder Updates. > Dokumentation der Xamarin API auf ihrer Homepage nicht immer hilfreich, da teilweise zu undetailliert > Bei aufwendigeren/individuelleren UIs wird ein Custom Renderer benötigt, der in C# geschrieben wird und eine extra Klasse benötigt. // doubleslash 42

43 Fazit & Ausblick > Eignet sich für > Apps, die wenig plattformspezifische Funktionen benötigen > Apps, bei denen ein custom UI unwichtiger ist als Code, der geteilt werden kann > Programmierer, die sich mit XAML und C# auskennen > Auch für Prototyping gut einsetzbar // doubleslash 43

44 Fazit & Ausblick > Eignet sich weniger gut für > (Apps, die viele spezifische APIs verwenden) > Xamarin Components > Apps, bei denen ein custom UI wichtiger ist als teilbarer Code // doubleslash 44

45 Fazit & Ausblick [3] [3] > Extensions > Chart > Kalender > ListView > SideDraw > DataForm > // doubleslash [6] 45

46 Fazit & Ausblick Visual Studio mobile Center [7] // doubleslash 46

47 Fazit & Ausblick > Ausblick > Visual Studio mobile Center ist die Weiterentwicklung von Xamarin Test Cloud > Cloud Anwendung > ios & Android Apps werden automatisch bei jedem Commit > übersetzt > auf echter Hardware getestet > erfolgreich getestete App-Pakete an Beta-Tester verteilt > Nutzungsanalyse und Laufzeitfehlerüberwachung > Unterstützung für UWP Apps und Cordova ist geplant // doubleslash 47

48 Fazit & Ausblick > Ausblick > XAML Previewer > Code Änderungen werden so angezeigt wie sie später zur Laufzeit aussehen // doubleslash 48

49 efficiency. we set IT up. Vielen Dank doubleslash Net-Business GmbH // doubleslash 49

50 Anhang > Link zum GitHub Repo für das Live Beispiel: // doubleslash 50

51 Quellen > [1] > [2] > [3] > [4] dotnetpro 11/2016 Seite 26 > [5] > [6] // doubleslash 51

52 Quellen > [7] Release-Candidate-von-Visual-Studio-2017-steht-bereit html?view=zoom;zoom=1 > [8] > [9] olve > [10] // doubleslash 52

53 Quellen > [11] // doubleslash 53

Cross-Plattform-App- Entwicklung mit Visual Studio 2017

Cross-Plattform-App- Entwicklung mit Visual Studio 2017 Cross-Plattform-App- Entwicklung mit Visual Studio 2017 Xamarin und Cordova André Krämer Softwareentwickler, Trainer & Berater andre@andrekraemer.de http://andrekraemer.de http://andrekraemer.de/blog http://github.com/andrekraemer

Mehr

Cross-Platform Mobile Development mit Xamarin Mark Allibone, @mallibone

Cross-Platform Mobile Development mit Xamarin Mark Allibone, @mallibone 1 Cross-Platform Mobile Development mit Xamarin Mark Allibone, @mallibone Partner: 2 Vorstellung Referent Mark Allibone Noser Engineering AG Passionierter Mobile Entwickler: Xamarin Certified Mobile Developer

Mehr

Mobile Apps mit. React-Native. Manuel

Mobile Apps mit. React-Native. Manuel Mobile Apps mit React-Native Manuel Mauky @manuel_mauky Mobile Apps? Mobile Apps? - Welche Möglichkeiten existieren? Native Android ios Mobile Apps? - Welche Möglichkeiten existieren? Native Android ios

Mehr

Mobile Apps mit. React-Native. Manuel

Mobile Apps mit. React-Native. Manuel Mobile Apps mit React-Native Manuel Mauky @manuel_mauky Mobile Apps? Mobile Apps? - Welche Möglichkeiten existieren? Native Android ios Mobile Apps? - Welche Möglichkeiten existieren? Native Android ios

Mehr

Mobile Development in.net mit Xamarin

Mobile Development in.net mit Xamarin 1 Mobile Development in.net mit Xamarin Mobile Web (Hybrid) Apps Vorteil: Weniger Aufwand Multi-Plattform Web-Technologien Nachteil: UX Performance UI Design Gerätefunktionen 2 Plattform abstrahieren 3

Mehr

Line-of-Business-Apps mit der Universal Windows Platform entwickeln. Thomas Claudius

Line-of-Business-Apps mit der Universal Windows Platform entwickeln. Thomas Claudius Line-of-Business-Apps mit der Universal Windows Platform entwickeln Thomas Claudius Huber @thomasclaudiush Thomas Claudius Huber Principal Consultant bei Trivadis Pluralsight-Autor, Buchautor C#, XAML,

Mehr

Jörg Neumann Acando GmbH

Jörg Neumann Acando GmbH Jörg Neumann Acando GmbH Jörg Neumann Principal Consultant bei der Acando GmbH MVP Windows Platform Development Beratung, Training, Coaching Buchautor, Speaker Mail: Joerg.Neumann@Acando.com Blog: www.headwriteline.blogspot.com

Mehr

Cross-Platform Apps mit HTML5/JS/CSS/PhoneGap

Cross-Platform Apps mit HTML5/JS/CSS/PhoneGap Cross-Platform Apps mit HTML5/JS/CSS/PhoneGap Proseminar Objektorientiertes Programmieren mit.net und C# Florian Schulz Institut für Informatik Software & Systems Engineering Einführung Was hat Cross-Plattform

Mehr

Cross-Platform Mobile mit.net

Cross-Platform Mobile mit.net Cross-Platform Mobile mit.net Mobile Entwicklungslandschaft Nativ Crosscompiled Hybrid Web Beste Usability? Überschaubare Kosten? Was ist Xamarin? Was ist Xamarin? 2011 Gegründet aus dem Ximian, Novell

Mehr

Zentrale Informatik. Cross-platform Apps. Andrea Grössbauer David Meier. 11/11/15 Lunchveranstaltungen HS16 - Crossplatform Apps 1

Zentrale Informatik. Cross-platform Apps. Andrea Grössbauer David Meier. 11/11/15 Lunchveranstaltungen HS16 - Crossplatform Apps 1 Cross-platform Apps Andrea Grössbauer David Meier 1 Was sind cross-platform Apps? Bei cross-platform Apps muss der Code nicht für jede Plattform einzeln geschrieben werden. Es wird sozusagen eine Universalapp

Mehr

The app the crashes, before the breakpoint is reached: Code to the event:

The app the crashes, before the breakpoint is reached: Code to the event: I have set a breakpoint in an asyc event-handler to ListView.ItenTapped-Event (see screenshot below): I then tap on an ListView-entry on my iphone 5 The app the crashes, before the breakpoint is reached:

Mehr

Mit Cloud Power werden Sie zum

Mit Cloud Power werden Sie zum Mit Cloud Power werden Sie zum Herzlich Willkommen! Christian Hassa Managing Partner TechTalk Software AG Agenda Mobile App Development mit Xamarin Pause Azure Mobile Services Q&A 9h00-10h30 10h30-10h50

Mehr

UI-TESTING FÜR MOBILE PLATTFORMEN HERAUSFORDERUNG UND CHANCE ZUGLEICH!

UI-TESTING FÜR MOBILE PLATTFORMEN HERAUSFORDERUNG UND CHANCE ZUGLEICH! UI-TESTING FÜR MOBILE PLATTFORMEN HERAUSFORDERUNG UND CHANCE ZUGLEICH! von @MarkusTiede - BREDEX GmbH ABOUT ME Eclipse.org Committer since 2010 Jubula & Simultaneous Release Eclipse Packaging Project primär

Mehr

Echte Cross-Plattform Anwendungen mit Angular 2 in Action!

Echte Cross-Plattform Anwendungen mit Angular 2 in Action! Browser, Mobile & Desktop Echte Cross-Plattform Anwendungen mit Angular 2 in Action! Christian Weyer Thinktecture AG @christianweyer 2 Christian Weyer Mitgründer & Principal Consultant Thinktecture AG

Mehr

Cross Platform Development Heute Windows, morgen Android, übermorgen Xbox

Cross Platform Development Heute Windows, morgen Android, übermorgen Xbox Cross Platform Development Heute Windows, morgen Android, übermorgen Xbox Daniel Meixner Technical Evangelist Microsoft Deutschland GmbH @DanielMeixner DevelopersDevelopersDevelopersDevelopers.Net Programming

Mehr

Agenda. Native Cross- Platform- Entwicklung. Mobile Business Apps. App Demo Code Demo. Fazit. Architektur ALM

Agenda. Native Cross- Platform- Entwicklung. Mobile Business Apps. App Demo Code Demo. Fazit. Architektur ALM Agenda Mobile Business Apps Native Cross- Platform- Entwicklung App Demo Code Demo Fazit Architektur ALM Mobile Business Apps Mobile Business Apps Frontend/Device ALM Multiple Betriebssysteme Multiple

Mehr

Mobile App development mit Xamarin. Christian Hassa (ch@techtalk.ch) Andreas Willich (awi@techtalk.ch) TechTalk Software AG

Mobile App development mit Xamarin. Christian Hassa (ch@techtalk.ch) Andreas Willich (awi@techtalk.ch) TechTalk Software AG Mobile App development mit Xamarin Christian Hassa (ch@techtalk.ch) Andreas Willich (awi@techtalk.ch) TechTalk Software AG % der Bevölkerung mit Smartphone Smartphone Durchdringung >50% 34% 43% 54% DACH

Mehr

MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP)

MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP) MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP) Oliver Steinhauer Markus Urban.mobile PROFI Mobile Business Agenda MOBILE ENTERPRISE APPLICATION PLATFORM AGENDA 01 Mobile Enterprise Application Platform

Mehr

JS goes mobile: Eine Übersicht. Frederik von Berg w11k / thecodecampus

JS goes mobile: Eine Übersicht. Frederik von Berg w11k / thecodecampus JS goes mobile: Eine Übersicht Frederik von Berg w11k / thecodecampus Überblick Über mich Historie Mobile Native JavaScript Vergleich mit Nativ & Hybrid Frameworks Setup & Codebeispiel

Mehr

Agon Solutions. The native web mobile Architekturen mit HTML5 und PhoneGap. Ihre Prozesse in besten Händen.

Agon Solutions. The native web mobile Architekturen mit HTML5 und PhoneGap. Ihre Prozesse in besten Händen. The native web mobile Architekturen mit HTML5 und PhoneGap Juri Urbainczyk Agon meets Technology 26. Februar 2013 Agon Solutions Ihre Prozesse in besten Händen. 1 Worum geht s? Mobile und mehr Warum HTML5?

Mehr

Echte Cross-Plattform Anwendungen mit Angular 2 in Action!

Echte Cross-Plattform Anwendungen mit Angular 2 in Action! Browser, Mobile & Desktop Echte Cross-Plattform Anwendungen mit Angular 2 in Action! Christian Weyer Thinktecture AG @christianweyer 2 Christian Weyer Mitgründer & Principal Consultant Thinktecture AG

Mehr

ios, Android, WP7... Alle nativ auf einen Streich!

ios, Android, WP7... Alle nativ auf einen Streich! ios, Android, WP7... Alle nativ auf einen Streich! Romano Roth und Oliver Brack Folie 1 24. September 2012 Romano Roth & Oliver Brack Kein Erfolg ohne Mobilität! 1600 1400 1200 1000 800 600 400 200 0 2010

Mehr

Romano Roth & Oliver Brack Zühlke Engineering AG

Romano Roth & Oliver Brack Zühlke Engineering AG Romano Roth & Oliver Brack Zühlke Engineering AG 1600 1400 1200 1000 800 600 400 200 0 2010 2011 2012 2013 2014 2015 2016 12/11-02/12 PCs Mobilgeräte Android ios andere IDC/Nielsen 2012 Entwicklungskosten

Mehr

MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP)

MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP) MOBILE ENTERPRISE APPLICATION PLATFORM (MEAP) Oliver Steinhauer.mobile PROFI Mobile Business Agenda MOBILE ENTERPRISE APPLICATION PLATFORM AGENDA 01 Mobile Enterprise Application Platform 02 PROFI News

Mehr

2.1. Short description to bug Xamarin.Forms: ListView not scrollable in a ScrollView in a Stacklayout on Android

2.1. Short description to bug Xamarin.Forms: ListView not scrollable in a ScrollView in a Stacklayout on Android Short description to bug Xamarin.Forms: ListView not scrollable in a ScrollView in a Stacklayout on Android On a modal ( 1 ) search-page in my app, I have: A StackLayout ( 2 ) with: A Button on top ( 2.1)

Mehr

Meine App, die Cloud und ich

Meine App, die Cloud und ich 04. FEBRUAR 2016 Meine App, die Cloud und ich Braucht die universelle App den universellen Entwickler? Beate Lay Referent Beate Lay MCT (Microsoft Certified Trainer) C# Programmierung seit.net 1.0 Datenzugriff

Mehr

Projekte. Beratung. Spezialisten. FAQs zur Technik. IKS-Thementag FAQs zur Technik 1 61

Projekte. Beratung. Spezialisten. FAQs zur Technik. IKS-Thementag FAQs zur Technik 1 61 Projekte. Beratung. Spezialisten. FAQs zur Technik IKS-Thementag Autor: Jan Laußmann 12.04.2016 FAQs zur Technik 1 61 Agenda Development Distribution Push Notifications Google Analytics Security FAQs zur

Mehr

IT-Development & Consulting. Quo Vadis Microsoft? Multiplattform-Entwicklung mit.net. Axel Eckenberger, it-people it-solutions

IT-Development & Consulting. Quo Vadis Microsoft? Multiplattform-Entwicklung mit.net. Axel Eckenberger, it-people it-solutions IT-Development & Consulting Quo Vadis Microsoft? Multiplattform-Entwicklung mit.net Axel Eckenberger, 09.03.2017 it-people it-solutions Agenda Was bedeutet Multiplattform Entwicklung? Welche Konsequenzen

Mehr

Mobile Applications. Adrian Nägeli, CTO bitforge AG

Mobile Applications. Adrian Nägeli, CTO bitforge AG Mobile Applications Adrian Nägeli, CTO bitforge AG Inhalt Vorstellung Marktübersicht Entwicklung Adrian Nägeli Dipl. Inf.-Ing FH Seit 2005 bei bitforge bitforge AG Standort Rapperswil-Jona Gründung 2004

Mehr

ADF Mobile konkret Best Practices Live erklärt. Jan Ernst

ADF Mobile konkret Best Practices Live erklärt. Jan Ernst ADF Mobile konkret Best Practices Live erklärt Jan Ernst Zur Person: Jan Ernst Bachelorstudium Wirtschaftswissenschaften mit Schwerpunkt Wirtschaftsinformatik (4. Semsester) FAU Erlangen/Nürnberg Werkstudent

Mehr

Mail: Web: juergen-schuster-it.de

Mail: Web: juergen-schuster-it.de Mail: j_schuster@me.com Twitter: @JuergenSchuster Web: juergen-schuster-it.de APEX Podcast: apex.press/talkshow Dynamic Actions Examples: dynamic-actions.com APEX-Meetups: apexmeetups.com APEX D-A-CH Facebook

Mehr

Vom Prototypen zur Anwendung

Vom Prototypen zur Anwendung Vom Prototypen zur Anwendung iks-thementag: Mobile Applikationen Ein Leitfaden für Unternehmen 19.10.2011 Autor: Ingo Röpling Agenda Was ist vorab zu beachten? Skills und Systemvoraussetzungen Implementierung

Mehr

Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4

Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4 Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4 GULP ID: Wohnort: Staatsbürgerschaft: Jahrgang: Verfügbar ab: verfügbar zu: davon vor Ort: Stundensatz: 186378 Grimmen Deutsch 1991

Mehr

Plattformunabhängige App-Entwicklung - Eine für alle?

Plattformunabhängige App-Entwicklung - Eine für alle? Plattformunabhängige App-Entwicklung - Eine für alle? AGENDA Kurze Firmenpräsentation: M&M Software GmbH Motivation Komponenten der plattformunabhängigen App-Entwicklung Vergleich der App-Arten Beispiele

Mehr

Mobile hybride Applikationen Investment-App der BW-Bank

Mobile hybride Applikationen Investment-App der BW-Bank Mobile hybride Applikationen Investment-App der BW-Bank avono Aktiengesellschaft Breite Straße 2 70173 Stuttgart www.avono.de Fon (0711) 28 07 57 0 Fax (0711) 28 07 57-28 Ihr Referent Manfred Heiland Senior

Mehr

App Entwicklung mit Hilfe von Phonegap. Web Advanced II - SS 2012 Jennifer Beckmann

App Entwicklung mit Hilfe von Phonegap. Web Advanced II - SS 2012 Jennifer Beckmann App Entwicklung mit Hilfe von Phonegap Web Advanced II - SS 2012 Jennifer Beckmann http://www.focus.de/digital/internet/netzoekonomie-blog/smartphone-googles-android-laeuft-konkurrenz-in-deutschland-davon_aid_723544.html

Mehr

HTML5 und das Framework jquery Mobile

HTML5 und das Framework jquery Mobile HTML5 und das Framework jquery Mobile Seminarvortrag Naeema Anees Betreuer: Prof. Ulrich Stegelmann Dipl.-Inform. Axel Blum Einleitung Vielfalt an mobilen Geräten Verschiedene Betriebssysteme Verschiedene

Mehr

Was gibt es Neues im Office 365 Umfeld?

Was gibt es Neues im Office 365 Umfeld? Was gibt es Neues im Office 365 Umfeld? PowerApps und Flow SharePoint & Office 365 Community 24. August 2016 Was erwartet uns heute? PowerApps Was ist PowerApps? Wie funktioniert es? Wann ist es verfügbar?

Mehr

Java.NET Web-Technologien Mobile

Java.NET Web-Technologien Mobile 2017 Java.NET Web-Technologien Mobile MATHEMA Training Seit mehr als 20 Jahren unterstützen wir unsere Kunden nicht nur mit hochqualifizierter Beratung sowie Entwicklungsleistung, sondern geben unser in

Mehr

Qualitätssicherung für mobile Anwendungen Fallstudien für GUI-Testautomatisierung. Alexandra Schladebeck

Qualitätssicherung für mobile Anwendungen Fallstudien für GUI-Testautomatisierung. Alexandra Schladebeck Qualitätssicherung für mobile Anwendungen Fallstudien für GUI-Testautomatisierung Alexandra Schladebeck Bredex GmbH Version 2.5 Agenda Wo sind wir? Neue Ziele und Herausforderungen Kandidaten : Projekte

Mehr

Kerry W. Lothrop @kwlothrop Zühlke Engineering GmbH

Kerry W. Lothrop @kwlothrop Zühlke Engineering GmbH Kerry W. Lothrop @kwlothrop Zühlke Engineering GmbH Enterprise Was ist im Enterprise-Kontext wichtig? Native Crosscompiled Hybrid Web ios Android Windows Native Mac Xcode Objective- C/Swift Mac/Windows

Mehr

Eine App, viele Plattformen

Eine App, viele Plattformen Eine App, viele Plattformen Anwendungsentwicklung für Mobile Heiko Lewandowski 23.04.2013 EINLEITUNG Festlegung App-Strategie: Welche Ziele möchte ich erreichen? Die Vielzahl der Plattformen und Geräte(hersteller)

Mehr

Enterra Software GmbH Mobile Development

Enterra Software GmbH Mobile Development Enterra Software GmbH Mobile Development Enterra Software GmbH Seite 1 Zukünftige Herausforderungen für Unternehmen Unternehmen stehen heute vor der Herausforderung Inhalte und nutzwertige Anwendungen

Mehr

Quickline Cloud Apps

Quickline Cloud Apps Quickline Cloud Apps Inhaltsverzeichnis Inhalt 1. Einstieg 3 2. Unterstützte Geräte 3 3. Mobile Apps 4 3.1 Hauptmenü 5 3.2 Automatische Aktualisierung 7 3.3 Dateikennzeichnung 8 3.4 Erste Nutzung 9 3.4.1

Mehr

Profitieren Sie von einer offenen und flexiblen Clouddienstplattform

Profitieren Sie von einer offenen und flexiblen Clouddienstplattform Microsoft Azure Profitieren Sie von einer offenen und flexiblen Clouddienstplattform Microsoft Azure ist eine wachsende Sammlung integrierter Clouddienste für Analysen, Computing, Datenbanken, Mobilgeräte,

Mehr

Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4

Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4 Web App / Hybrid-App Entwicklung mittels Angular 7, Firebase und Ionic 4 GULP ID: Wohnort: Staatsbürgerschaft: Jahrgang: Verfügbar ab: verfügbar zu: davon vor Ort: Stundensatz: 186378 Grimmen Deutsch 1991

Mehr

Cross Platform Development mit SharePoint

Cross Platform Development mit SharePoint Cross Platform Development mit SharePoint Agenda Wir entwickeln eine App um Businesstrips in SharePoint zu erfassen Businesstraveller 0.1 http://ppedv.de/msts Folien Demo Projekt Link Sammlung Und meine

Mehr

Skalierbare Enterprise Architekturen für Universal Windows Platform Apps

Skalierbare Enterprise Architekturen für Universal Windows Platform Apps Agenda Ziele Portable Class Libraries Projektaufbau MVVM Databinding #1 MVVM Light Inversion of Control & Dependency Injection Repository Pattern Databinding #2 Skalierbare Enterprise Architekturen für

Mehr

Mit dem Google-Web-Toolkit moderne Web-Anwendungen entwickeln

Mit dem Google-Web-Toolkit moderne Web-Anwendungen entwickeln Mit dem Google-Web-Toolkit moderne Web-Anwendungen entwickeln Ziel dieses Vortrags Ich möchte Sie davon überzeugen, dass das Google-Web-Toolkit (GWT) das aktuell beste Tool zur Erstellung von modernen

Mehr

JavaFX auf Mobile. von Stefan Barth und Stefan Heinze

JavaFX auf Mobile. von Stefan Barth und Stefan Heinze von Stefan Barth und Stefan Heinze JavaFX Was ist JavaFX? Desktopanwendungen für Java (Ablösung von Swing) Properties / Bindings Animationen Effekte MultiTouch Media, CSS FXML, CSS Webbrowser... Einsatzmöglichkeiten

Mehr

Quickline Cloud Apps

Quickline Cloud Apps Quickline Cloud Apps Inhaltsverzeichnis Inhalt 1. Einstieg 3 2. Unterstützte Geräte 3 3. Mobile Apps 4 3.1 Hauptmenü 5 3.2 Automatische Aktualisierung 7 3.3 Dateikennzeichnung 8 3.4 Erste Nutzung 9 3.4.1

Mehr

Mobile API 2.0 Partizipative App Entwicklung

Mobile API 2.0 Partizipative App Entwicklung Mobile API 2.0 Partizipative App Entwicklung Mobile API 2.0 Aktuelle Herausforderungen Mobile Apps sollen Geschäftsprozesse beschleunigen Verbindung mit mehreren Backend Systemen Apps müssen auf unterschiedlichen

Mehr

Unsere hybridapp funktioniert wie eine normale App, ist aber bis zu 65% günstiger!

Unsere hybridapp funktioniert wie eine normale App, ist aber bis zu 65% günstiger! Unsere hybridapp funktioniert wie eine normale App, ist aber bis zu 65% günstiger! Eine herkömmlich programmierte App kostet bisher ab 30.000 Euro * aufwärts, wenn man sie für beide Plattformen (Android,

Mehr

Xamarin Applikationen Showcase aus der Praxis

Xamarin Applikationen Showcase aus der Praxis Xamarin Applikationen Showcase aus der Praxis Mark Allibone @mallibone Noser Engineering AG 2014, Alle Rechte vorbehalten. Erfahrungen Erfahrung ist der beste Lehrmeister. Nur das Schulgeld ist teuer.

Mehr

App-Entwicklung mit Titanium

App-Entwicklung mit Titanium Masterstudienarbeit Betreuung Prof. Dr. M. von Schwerin 1 Gliederung 1.Motivation 2.Aufgabenstellung 3.Projektbeschreibung 4.Projektstatusbericht 5.Fazit und Ausblick 2 1.Motivation Verbreitung von Smartphones

Mehr

informatik ag IT mit klarer Linie S i e b e l O p e n U I

informatik ag IT mit klarer Linie S i e b e l O p e n U I informatik ag IT mit klarer Linie S i e b e l O p e n U I und Siebel auf mobilen Geräten www.ilume.de Siebel Open UI und Siebel auf mobilen Geräten Die Anforderungen an unternehmensweite Softwarelösungen

Mehr

ECC Möbelschloss

ECC Möbelschloss ECC 2017 - Möbelschloss Projektauftrag Ein Möbelschloss entwickeln, das mit iphones und Androids geöffnet werden kann. Anforderungen Batteriebetriebenes Möbelschloss Nutzung mit Android- und ios-smart

Mehr

MEET THE CUISINES.

MEET THE CUISINES. MEET THE CUISINES www.bestppt.com Agenda START Unternehmensvorstellung Wer sind wir? Portfolio Was können wir für Sie tun? Network Gemeinsames Fachwissen Referenzen Für wen arbeiten wir? ENDE Unternehmensvorstellung

Mehr

Progressive Web Apps mit APEX. Till Albert

Progressive Web Apps mit APEX. Till Albert Progressive Web Apps mit APEX Till Albert 09.05.2019 Facts & Figures IT-Beratungsunternehmen Branchen übergreifend Hersteller neutral Hauptsitz Ratingen Niederlassung Frankfurt am Main 250 Beschäftigte

Mehr

MVVM in Windows 8 und Windows Phone 8

MVVM in Windows 8 und Windows Phone 8 Basel MVVM in Windows 8 und Windows Phone 8 Thomas Claudius Huber Trivadis AG Thomas Claudius Huber Principal Consultat bei Trivadis www.trivadis.com www.thomasclaudiushuber.com Trainer, Coach, Developer,

Mehr

Aktuelle Kurstermine

Aktuelle Kurstermine Design Patterns 20.07.2015-22.07.2015 3 Tage 1.200,- Lokale Netze - Basiswissen 20.07.2015-24.07.2015 5 Tage 1.830,- Java EE Persistence API Development 27.07.2015-29.07.2015 3 Tage 1.200,- Linux Server

Mehr

Präsentation Von Laura Baake und Janina Schwemer

Präsentation Von Laura Baake und Janina Schwemer Präsentation Von Laura Baake und Janina Schwemer Gliederung Einleitung Verschiedene Betriebssysteme Was ist ein Framework? App-Entwicklung App-Arten Möglichkeiten und Einschränkungen der App-Entwicklung

Mehr

Ist ein Frontend-Framework zum Entwickeln von Hybriden mobilen Apps mit HTML5 und Angular für ios- und Android-Plattformen.

Ist ein Frontend-Framework zum Entwickeln von Hybriden mobilen Apps mit HTML5 und Angular für ios- und Android-Plattformen. Ionic Framework Ist Open Source. Ist ein Frontend-Framework zum Entwickeln von Hybriden mobilen Apps mit HTML5 und Angular für ios- und Android-Plattformen. Benötigt node.js. https://ionicframework.com

Mehr

Entwicklung einer Mobile Application mit ADF Mobile

Entwicklung einer Mobile Application mit ADF Mobile Entwicklung einer Mobile Application mit ADF Mobile Markus Neubauer, Thomas Feldmeier Fürth Schlüsselworte ADF Mobile, ADF, Mobile, Middleware, JDeveloper Einleitung Vor kurzem hat Oracle das Application

Mehr

IBM System z für ISVs Case Study Mobile Business Apps: COMELEO by aformatik

IBM System z für ISVs Case Study Mobile Business Apps: COMELEO by aformatik IBM System z für ISVs Case Study Mobile Business Apps: COMELEO by aformatik Agenda: Case Study Mobile Business Apps Kurzvorstellung der Firma aformatik: Erfahrungen aus 10 Jahren App -Entwicklung IBM Worklight:

Mehr

MOBILE ON POWER MACHEN SIE IHRE ANWENDUNGEN MOBIL?!

MOBILE ON POWER MACHEN SIE IHRE ANWENDUNGEN MOBIL?! MOBILE ON POWER MACHEN SIE IHRE ANWENDUNGEN MOBIL?! Oliver Steinhauer Sascha Köhler.mobile PROFI Mobile Business Agenda MACHEN SIE IHRE ANWENDUNGEN MOBIL?! HERAUSFORDERUNG Prozesse und Anwendungen A B

Mehr

Cross-Platform Mobile Apps

Cross-Platform Mobile Apps Cross-Platform Mobile Apps 05. Juni 2013 Martin Wittemann Master of Science (2009) Arbeitet bei 1&1 Internet AG Head of Frameworks & Tooling Tech Lead von qooxdoo Plattformen Java ME 12 % Rest 7 % Android

Mehr

UI Technologien für SAP-Anwendungen

UI Technologien für SAP-Anwendungen UI Technologien für SAP-Anwendungen Julian Popp, Christian Fink 24.09.2016 Übersicht 1. SAP UI Key Technologien und Tools 2. FINK IT-Solutions UI Portfolio - Browser 3. FINK IT-Solutions UI Portfolio -

Mehr

Der SCHWEIZER WELTATLAS interaktiv als Web Applikation

Der SCHWEIZER WELTATLAS interaktiv als Web Applikation 16. Januar 2014 Der SCHWEIZER WELTATLAS interaktiv als Web Applikation Ein Prototyp realisiert mit ArcGIS API for JavaScript Masterarbeit am Institut für Kartografie und Geoinformation Leitung Prof. Dr.

Mehr

Immer mehr lebt mobil

Immer mehr lebt mobil Immer mehr lebt mobil mehr als 4.600.000.000 Mobilgeräte breite Verfügbarkeit neuer always-on und Apps Lifestyle 2 Trittsicher auf allen mobilen Pfaden mit HTML5 und jquery Mobile Mike Baird http://flickr.com/photos/mikebaird/482031103/

Mehr

23. Januar, Zürich-Oerlikon

23. Januar, Zürich-Oerlikon 23. Januar, Zürich-Oerlikon Continuous Integration für Cross-Platform Mobile Development mit Xamarin Markus Heinisch Principal Consultant Trivadis GmbH Mit über 600 IT- und Fachexperten bei Ihnen vor Ort

Mehr

CREATIVE CLOUD WAS GIBT ES NEUES IM WEB-BEREICH?

CREATIVE CLOUD WAS GIBT ES NEUES IM WEB-BEREICH? CREATIVE CLOUD WAS GIBT ES NEUES IM WEB-BEREICH? ADOBE PHOTOSHOP CC ZEICHENFLÄCHEN Ähnlich wie in Illustrator kann man jetzt auch in Photoshop mit Zeichenflächen arbeiten. Über Zeichenflächen lassen sich

Mehr

Herzlich Willkommen! Fit for Future: Innovations-Forum meets IT Strategie Workshop 2018

Herzlich Willkommen! Fit for Future: Innovations-Forum meets IT Strategie Workshop 2018 Herzlich Willkommen! Fit for Future: Innovations-Forum meets IT Strategie Workshop 2018 Roadmap 2018 Neue Geräte Plattformen Neue Entwicklungen Erweiterung der Client-Basis Neubau des Server Managers Flexiblere

Mehr

Azure Community Deutschland. Microsoft Azure. Was ist drin für Unternehmen? Oliver Michalski (Senior Software Engineer.NET)

Azure Community Deutschland. Microsoft Azure. Was ist drin für Unternehmen? Oliver Michalski (Senior Software Engineer.NET) Azure Community Deutschland Microsoft Azure Was ist drin für Unternehmen? Oliver Michalski (Senior Software Engineer.NET) Berlin 2016 1.0 Vorwort Hallo zusammen! das Schwerpunktthema der ACD, ist in diesem

Mehr

React.js flottes Front-End für Domino. Knut Herrmann

React.js flottes Front-End für Domino. Knut Herrmann React.js flottes Front-End für Domino Knut Herrmann Knut Herrmann Senior Software Architekt Leonso GmbH Notes Domino Entwickler seit Version 2 Web-App-Entwickler aktiv auf StackOverflow E-Mail: knut.herrmann@leonso.de

Mehr

Cross-Platform Entwicklung mit Xamarin: Erfahrungen eines Software-Ingenieurs

Cross-Platform Entwicklung mit Xamarin: Erfahrungen eines Software-Ingenieurs Cross-Platform Entwicklung mit Xamarin: Erfahrungen eines Software-Ingenieurs Thomas Charrière Community Leiter Mobile Software Engineer bbv Software Services AG www.bbv.ch Cross-Platform Entwicklung mit

Mehr

Mit Cloud Power werden Sie zum

Mit Cloud Power werden Sie zum Mit Cloud Power werden Sie zum Windows 8 und Windows Phones Apps Mark Allibone Noser Engineering AG History Channel Computing Technology 1960 Mainframe Computing 1970 Mini Computing 1980 Personal Computing

Mehr

Thomas Claudius Huber Trivadis Services AG. Daten aus Office 365 in die eigene App integrieren

Thomas Claudius Huber Trivadis Services AG. Daten aus Office 365 in die eigene App integrieren Thomas Claudius Huber Trivadis Services AG Daten aus Office 365 in die eigene App integrieren Thomas Claudius Huber Principal Consultant bei Trivadis Pluralsight-Autor, Buchautor C#, XAML, TypeScript,

Mehr

Apollo Überblick. Klaus Kurz. Manager Business Development. 2007 Adobe Systems Incorporated. All Rights Reserved.

Apollo Überblick. Klaus Kurz. Manager Business Development. 2007 Adobe Systems Incorporated. All Rights Reserved. Apollo Überblick Klaus Kurz Manager Business Development 1 Was ist Apollo? Apollo ist der Codename für eine plattformunabhängige Laufzeitumgebung, entwickelt von Adobe, die es Entwicklern ermöglicht ihre

Mehr

Mobile App Testing. Software Test im mobilen Umfeld ATB Expertentreff, Wien, 2013. Functional Test Automation Tools

Mobile App Testing. Software Test im mobilen Umfeld ATB Expertentreff, Wien, 2013. Functional Test Automation Tools Functional Test Automation Tools Mobile App Testing Software Test im mobilen Umfeld ATB Expertentreff, Wien, 2013 Presenter: Christoph Preschern (cpreschern@ranorex.com) Inhalte» Ranorex Company Overview»

Mehr

Mobile Lösungen von M SOFT Kurzübersicht. M SOFT Organisationsberatung GmbH, 2016

Mobile Lösungen von M SOFT Kurzübersicht. M SOFT Organisationsberatung GmbH, 2016 Mobile Lösungen von M SOFT Kurzübersicht M SOFT Organisationsberatung GmbH, 2016 Mobile Lösungen von M SOFT Rechenzentrum Import in Nachkalkulation oder Berichte DB Server KIS Server DB Server TIME4 Buchungen,

Mehr

Service Engineering. Übung 2c Einbindung von Web APIs in mobilen Applikationen Prof. Dr. Andreas Schmietendorf, André Nitze

Service Engineering. Übung 2c Einbindung von Web APIs in mobilen Applikationen Prof. Dr. Andreas Schmietendorf, André Nitze Service Engineering Übung 2c Einbindung von Web APIs in mobilen Applikationen 1 Aufgabenbeschreibung 2 Aufgabe 1 Entwickeln Sie auf der Basis von mind. 2 frei zu wählenden Web APIs eine mobile Applikation

Mehr

VAADIN, SPRING BOOT & REST

VAADIN, SPRING BOOT & REST VAADIN, SPRING BOOT & REST Ein Einstieg für Domino Entwickler Stephan Kopp 1 STEPHAN KOPP Software & Solutions Development Tel.: +49 6182 7869420 Mobil: +49 173 3089806 E-Mail: stephan.kopp@axians.de 2

Mehr

Cross Plattform App Developement. Simon Groth

Cross Plattform App Developement. Simon Groth Cross Plattform App Developement Simon Groth 1x Warum? Cross Plattform App Developement 2 Motivation 74% Entwickeln oder Planen native Anwendung 72% Android 66% ios 33% BlackBerry 48% entwickeln die App

Mehr

Vaadin TouchKit. W3L AG info@w3l.de 10.2012

Vaadin TouchKit. W3L AG info@w3l.de 10.2012 1 Vaadin TouchKit W3L AG info@w3l.de 10.2012 2 Inhaltsverzeichnis Einführung Software-Plattformen TouchKit-Plug-In Integrationsmöglichkeiten Vaadin-TouchKit-Projekt GUI-Komponenten Live-Demo Geräte-Unterstützung

Mehr

Frühling für iphone-apps

Frühling für iphone-apps Spring-basierte Backends für ios-applikationen Stefan Scheidt Solution Architect OPITZ CONSULTING GmbH OPITZ CONSULTING GmbH 2010 Seite 1 Wer bin ich? Software-Entwickler und Architekt Trainer und Coach

Mehr

Oracle ADF Mobile. Jürgen Menge Oracle Deutschland B.V. & Co. KG. Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Oracle ADF Mobile. Jürgen Menge Oracle Deutschland B.V. & Co. KG. Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle ADF Mobile Jürgen Menge Oracle Deutschland B.V. & Co. KG 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

Mehr

Visual Studio 2015* Neues für Entwickler rund um. Daniel Meixner *CTP6. Technical Evangelist Microsoft Deutschland GmbH

Visual Studio 2015* Neues für Entwickler rund um. Daniel Meixner *CTP6. Technical Evangelist Microsoft Deutschland GmbH Neues für Entwickler rund um Visual Studio 2015* Daniel Meixner Technical Evangelist Microsoft Deutschland GmbH *CTP6 @DanielMeixner DevelopersDevelopersDevelopersDevelopers.Net the small things Window

Mehr

Dominik Doerner, Jonathan Bechtle ESCde

Dominik Doerner, Jonathan Bechtle ESCde Dominik Doerner, Jonathan Bechtle ESCde Kursübersicht Einführung in ASP.NET Core 01 Was ist ASP.NET Core? 02 Startup und Middleware 03 Wie funktioniert MVC? 04 Debugging und Logging Trainer Dominik Doerner

Mehr

Autorensysteme für mobile Anwendungen - Totgesagte leben länger. Prof. Dr. Michael Bauer 25.10. 2012 Autorensysteme

Autorensysteme für mobile Anwendungen - Totgesagte leben länger. Prof. Dr. Michael Bauer 25.10. 2012 Autorensysteme Autorensysteme für mobile Anwendungen - Totgesagte leben länger Was ist, was will ein Autor? Produzent interaktiver, multimedialer Inhalte geschlossene Einheiten (Apps) keine Grenzen für Kreativität Entwicklungs-

Mehr

Architekturen mobiler Multi Plattform Apps

Architekturen mobiler Multi Plattform Apps Architekturen mobiler Multi Plattform Apps Wolfgang Maison & Felix Willnecker 06. Dezember 2011 1 Warum Multi- Plattform- Architekturen? Markt. Apps für Smartphones gehören zum Standardinventar jeder guten

Mehr

Beraterprofil - Adem Aslan

Beraterprofil - Adem Aslan Name Abschluss Adem Aslan B.Sc. Medien und angewandte Informationstechnologie Jahrgang 1984 Wohnort Mülheim an der Ruhr, Deutschland Kontaktdaten Mobil +49 1520 / 86 38 068 E-Mail Web info@aslan-itconsulting.de

Mehr

APPS für ios 10. professionell entwickeln. Apple Watch

APPS für ios 10. professionell entwickeln. Apple Watch thomas SILLMANN APPS für ios 10 professionell entwickeln // Sauberen Code schreiben mit Swift 3 und Objective-C // Stabile Apps für iphone und ipad programmieren // Techniken & Methoden von Grund auf verstehen

Mehr

APEX DESKTOP APPS. Interaktion mit dem Client System

APEX DESKTOP APPS. Interaktion mit dem Client System APEX DESKTOP APPS Interaktion mit dem Client System About me Oracle > 8 Jahre APEX > 8 Jahre Freelancer seit 2016 Vorher APEX Entwickler im Versicherungsumfeld aktiver Open Source Entwickler auf Github

Mehr

Mobile Anwendungen im SAP-Umfeld

Mobile Anwendungen im SAP-Umfeld Erstes Symposium für neue IT in Leipzig 27. September 2013 Michael Rentzsch Informatik DV GmbH michael.rentzsch@informatik-dv.com +49.341.462586920 IT-Trend: Mobile Mobile might be one of the most interesting

Mehr

Lessons Learned: Mobile CRM Integration

Lessons Learned: Mobile CRM Integration 1 Lessons Learned: Mobile CRM Integration 2 Enable Mobile Business Apps in Enterprises Weptun GmbH Vorstellung 3 Gründung 2010 18 Mitarbeiter 50 Apps für internationale Kunden umgesetzt Launch eigener

Mehr

agree21doksharing Release V4.4 - LTS - Neuerungen

agree21doksharing Release V4.4 - LTS - Neuerungen agree21doksharing Release V4.4 - LTS - Neuerungen Inhaltsverzeichnis 1 agree21doksharing - Release V4.4 - LTS - Neuerungen... 2 agree21doksharing Apps für ios und Android... 2 Neuerungen für ios (iphone

Mehr

Microsoft Visual Studio Code mit RPG und IceBreak

Microsoft Visual Studio Code mit RPG und IceBreak Microsoft Visual Studio Code mit RPG und IceBreak ( 2018 Markus A. Litters) Inhaltsverzeichnis 1. Vorwort... 2 2. Voraussetzungen und Installation... 3 3. Der erste Start... 4 4. Die IceBreak Erweiterung...

Mehr