SlideShare una empresa de Scribd logo
1 de 39
Descargar para leer sin conexión
founders@appsocial.ly
AppSocially
QUICK START GUIDE (v.0.6.0)
CONTENTS founders@appsocial.ly
Contents
๏ What is AppSocially?
๏ How it works
๏ Run the Sample App
๏ How to Implement in Your App
1.Add SDK to Your Project
2.Implement Referral Mechanism
๏ What’s Next?
๏ Reference
founders@appsocial.lyWHAT IS APPSOCIALLY?
What is AppSocially?
founders@appsocial.lyPROBLEM
WE SOLVE THE
BIGGEST PROBLEM
APP DEVELOPERS
HAVE TODAY:
WE HELP THEM
GET MORE CUSTOMERS
founders@appsocial.ly
0%
18%
35%
53%
70%
Search App Store Family or Friends Media TV Ad In-App Ad
9%
6%
9%
52%
63%
13%13%
17%
61%
63%
HOW DO USERS DISCOVER APPS?
Source: Nielsen, Q3 2011
iOS AppStore Android Market
AppSocially
PLOBLEM founders@appsocial.ly Angel.co/appsocially
founders@appsocial.lySOLUTION
PLATFORM FOR MOBILE
ORGANIC GROWTH
SDK ACTIONABLE
ANALYTICS
founders@appsocial.lySDK ::: “ShareThis for mobile”
Share Trackable
UIActivity
Share like
Instagram/
Path
Aggregated
Friend Picker
Custom View
founders@appsocial.lyACTIONABLE ANALYTICS ::: “Optimizely for mobile”
SOLUTION founders@appsocial.ly
Having AppSocially is like having mobile-
focused ”user growth team as a platform.”
What “Growth
Team” does
Implement
Referral Mechanism
Track
Referral Metrics
Optimize
Referral Landing Pages
What others do
for mobile user
growth.
It takes 3 month w/ 10 people,
requires tons of knowledge, skills
and experience.
What you do
w/ AppSocially. ✓Quick install
✓Measure
predefined
metrics
✓Test different
designs
+ +
founders@appsocial.lyHOW IT WORKS
How it works
founders@appsocial.lyHOW IT WORKS
✓Install SDK
founders@appsocial.lyHOW IT WORKS
✓Edit Templates
founders@appsocial.lyHOW IT WORKS
✓Personalize
Templates
founders@appsocial.lyHOW IT WORKS
A CB
✓A/B Test
Templates
founders@appsocial.lyHOW IT WORKS
✓Keep Track of
Viral Metrics
founders@appsocial.lyRUN THE SAMPLE APP
Run the Sample App
RUN THE SAMPLE APP founders@appsocial.ly
0. Signup and create an app
๏ Signup for an AppSocially account
•http://appsocial.ly
๏ Create new app
RUN THE SAMPLE APP founders@appsocial.ly
1. Download SDK from the AppSocially
Dashboard
Sample projects are included in the ZIP file.
Prepare this API Key.
RUN THE SAMPLE APP founders@appsocial.ly
2. Create a new app on the Facebook App
Dashboard
RUN THE SAMPLE APP founders@appsocial.ly
3. Replace the AppSocially API Key and
Facebook APP ID
[Growth setAPIKey:@"YOUR_APPSOCIALLY_API_KEY"];
[Growth setFacebookAppID:@"YOUR_FACEBOOK_APP_ID"];
(AppDelegate.m)
#import <Growth/Growth.h>
RUN THE SAMPLE APP founders@appsocial.ly
4. Build & Run!
founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP
How to Implement
in Your App
founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP
1. Add SDK to Your
Project
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
1. Drag the “GrowthSDK” folder
into your project
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
2. Setup your project
๏ Add required frameworks- Accounts.framework
- AddressBook.framework
- AddressBookUI.framework
- CFNetwork.framework
- MessageUI.framework
- MobileCoreServices.framework
- QuartzCore.framework
- Security.framework
- Social.framework
- SystemConfiguration.framework
- libresolv.dylib
- libxml2.dylib
- libiconv.dylib
๏ Update Build Configurations
- Set "Other Linker Flags" configiration to "-ObjC -all_load".
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
3. Start Coding!
[Growth setAPIKey:@"YOUR_APPSOCIALLY_API_KEY"];
[Growth setFacebookAppID:@"YOUR_FACEBOOK_APP_ID"];
(AppDelegate.m)
#import <Growth/Growth.h>
founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP
2. Implement Referral
Mechanism
founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP
Share Trackable
UIActivity
Share like
Instagram/
Path
Aggregated
Friend Picker
Custom View
* See “Implement Referral Mechanism” chapter to learn how to implement each patterns.
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Action Sheet Type
Just 1 line.
[Growth showInviteSheetInView:self.view];
Sample Project: FirstSample
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Aggregated Friend Picker
(Invite like Path)
Sample Project: InviteSample
Implement the delegate methods.
Same as usual UIViewController subclasses.
GRFriendPickerViewController *pickerCtr = [[GRFriendPickerViewController alloc] init];
pickerCtr.delegate = self;
// customize here
[self presentViewController:pickerCtr animated:YES completion:nil];
Call inviteFriends method.
[GRInviter inviteFriends:self.pickedFriends
inviteInfo:inviteInfo
withMessage:NO
completion:nil];
- (void)friendPickerViewController:(GRFriendPickerViewController *)controller
didPickedFriends:(NSArray *)friends
{
self.pickedFriends = friends;
[controller dismissViewControllerAnimated:YES
completion:^{
// do something after friends being picked
}];
}
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Share
Sample Project: ShareSample
Call each Sharers.
[GRFacebookSharer shareWithItems:shareItems completion:nil];
[GRTwitterSharer shareWithItems:shareItems completion:nil];
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Trackable UIActivity
Sample Project: ShareSample
Same as default UIActivities.
GRTrackableTwitterActivity *twitter = [[GRTrackableTwitterActivity alloc] init];
GRTrackableFacebookActivity *facebook = [[GRTrackableFacebookActivity alloc] init];
GRTrackableMailActivity *mail = [[GRTrackableMailActivity alloc] init];
GRTrackableSMSActivity *sms = [[GRTrackableSMSActivity alloc] init];
NSArray *activities = @[twitter,
facebook,
mail,
sms];
UIActivityViewController *activityCtr;
activityCtr = [[UIActivityViewController alloc] initWithActivityItems:items
applicationActivities:activities];
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Share like Instagram
Sample Project: ShareSample
Same as usual UIViewController subclasses.
GRShareComposeViewController *shareCtr;
shareCtr = [[GRShareComposeViewController alloc] init];
[self presentViewController:shareCtr
animated:YES
completion:nil];
HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly
Custom View Type
Sample Project: Customized View Sample
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.row) {
case 0:
default:
// title
break;
case 1:
// Twitter
[GRTwitterDMInviter invite:nil completionHandler:nil];
break;
case 2:
// Facebook
[GRFacebookMessageInviter invite:nil completionHandler:nil];
break;
case 3:
// Mail
[GRMailInviter invite:nil completionHandler:nil];
break;
case 4:
// SMS
[GRSMSInviter invite:nil completionHandler:nil];
break;
}
}
Call each inviters.
founders@appsocial.lyWHAT’S NEXT
What’s Next?
WHAT’S NEXT founders@appsocial.ly
What’s next?
๏ Keep track of your customer’s referral metrics on the Dashboard
๏ Edit and personalize your landing pages (= template) on the
Dashboard
๏ Available soon:
•A/B test different designs of landing pages
•Send push notification to your existing customers to accelerate referrals
•Customize domain <iloveapp.co/XXXX> -> <yoursomain.com/XXXX>
founders@appsocial.lyREFERENCE
Reference
REFERENCE founders@appsocial.ly
Reference
๏ AppSocially
•http://appsocial.ly
founders@appsocial.ly
AppSocially
founders@appsocial.ly AppSocially
FOUNDERS@APPSOCIAL.LY
Thanks!

Más contenido relacionado

La actualidad más candente

Progressive Web Apps
Progressive Web AppsProgressive Web Apps
Progressive Web AppsTimmy Kokke
 
Bootiful Development with Spring Boot and Angular - RWX 2018
Bootiful Development with Spring Boot and Angular - RWX 2018Bootiful Development with Spring Boot and Angular - RWX 2018
Bootiful Development with Spring Boot and Angular - RWX 2018Matt Raible
 
Microservices for the Masses with Spring Boot and JHipster - RWX 2018
Microservices for the Masses with Spring Boot and JHipster - RWX 2018Microservices for the Masses with Spring Boot and JHipster - RWX 2018
Microservices for the Masses with Spring Boot and JHipster - RWX 2018Matt Raible
 
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)Lauren Hayward Schaefer
 
Bootiful Development with Spring Boot and Vue - RWX 2018
Bootiful Development with Spring Boot and Vue - RWX 2018Bootiful Development with Spring Boot and Vue - RWX 2018
Bootiful Development with Spring Boot and Vue - RWX 2018Matt Raible
 
Improving Android app testing with Appium and Sauce Labs
Improving Android app testing with Appium and Sauce LabsImproving Android app testing with Appium and Sauce Labs
Improving Android app testing with Appium and Sauce LabsIsaac Murchie
 
Learn how to add Native Google +1 button in Android Application
Learn how to add Native Google +1 button in Android ApplicationLearn how to add Native Google +1 button in Android Application
Learn how to add Native Google +1 button in Android ApplicationVidhi_Khatri
 
How to xcode in teams (without killing anyone) - #supengineering
How to xcode in teams (without killing anyone) - #supengineeringHow to xcode in teams (without killing anyone) - #supengineering
How to xcode in teams (without killing anyone) - #supengineeringJames Campbell
 
Engage and retain users in the android world - Droidcon Italy 2016
Engage and retain users in the android world - Droidcon Italy 2016Engage and retain users in the android world - Droidcon Italy 2016
Engage and retain users in the android world - Droidcon Italy 2016Matteo Bonifazi
 
Applying Design Priciples to APIs - 1 of 4
Applying Design Priciples to APIs - 1 of 4Applying Design Priciples to APIs - 1 of 4
Applying Design Priciples to APIs - 1 of 4Brian Mulloy
 
Here are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentHere are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentIndianAppDevelopers
 
Automating Hybrid Applications with Appium
Automating Hybrid Applications with AppiumAutomating Hybrid Applications with Appium
Automating Hybrid Applications with AppiumSauce Labs
 
IBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEIBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEhkbhadraa
 
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017Codemotion
 
Two Ton API Client
Two Ton API ClientTwo Ton API Client
Two Ton API ClientBrian Mulloy
 
Git workflow
Git workflowGit workflow
Git workflowArif Huda
 

La actualidad más candente (20)

Progressive Web Apps
Progressive Web AppsProgressive Web Apps
Progressive Web Apps
 
Bootiful Development with Spring Boot and Angular - RWX 2018
Bootiful Development with Spring Boot and Angular - RWX 2018Bootiful Development with Spring Boot and Angular - RWX 2018
Bootiful Development with Spring Boot and Angular - RWX 2018
 
Microservices for the Masses with Spring Boot and JHipster - RWX 2018
Microservices for the Masses with Spring Boot and JHipster - RWX 2018Microservices for the Masses with Spring Boot and JHipster - RWX 2018
Microservices for the Masses with Spring Boot and JHipster - RWX 2018
 
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)
Ditch Your Desktop! Lead Your Team into Cloud Computing! (workbook)
 
Bootiful Development with Spring Boot and Vue - RWX 2018
Bootiful Development with Spring Boot and Vue - RWX 2018Bootiful Development with Spring Boot and Vue - RWX 2018
Bootiful Development with Spring Boot and Vue - RWX 2018
 
WordCamp Bucharest 2017
WordCamp Bucharest 2017WordCamp Bucharest 2017
WordCamp Bucharest 2017
 
Improving Android app testing with Appium and Sauce Labs
Improving Android app testing with Appium and Sauce LabsImproving Android app testing with Appium and Sauce Labs
Improving Android app testing with Appium and Sauce Labs
 
Learn how to add Native Google +1 button in Android Application
Learn how to add Native Google +1 button in Android ApplicationLearn how to add Native Google +1 button in Android Application
Learn how to add Native Google +1 button in Android Application
 
Adoption-Centered API Design
Adoption-Centered API DesignAdoption-Centered API Design
Adoption-Centered API Design
 
How to xcode in teams (without killing anyone) - #supengineering
How to xcode in teams (without killing anyone) - #supengineeringHow to xcode in teams (without killing anyone) - #supengineering
How to xcode in teams (without killing anyone) - #supengineering
 
Engage and retain users in the android world - Droidcon Italy 2016
Engage and retain users in the android world - Droidcon Italy 2016Engage and retain users in the android world - Droidcon Italy 2016
Engage and retain users in the android world - Droidcon Italy 2016
 
Applying Design Priciples to APIs - 1 of 4
Applying Design Priciples to APIs - 1 of 4Applying Design Priciples to APIs - 1 of 4
Applying Design Priciples to APIs - 1 of 4
 
Here are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentHere are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App Development
 
Automating Hybrid Applications with Appium
Automating Hybrid Applications with AppiumAutomating Hybrid Applications with Appium
Automating Hybrid Applications with Appium
 
Angular 2.0
Angular 2.0Angular 2.0
Angular 2.0
 
4local+features
4local+features4local+features
4local+features
 
IBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEIBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDE
 
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017
Angular is on Fire(base) - Shmuela Jacobs - Codemotion Amsterdam 2017
 
Two Ton API Client
Two Ton API ClientTwo Ton API Client
Two Ton API Client
 
Git workflow
Git workflowGit workflow
Git workflow
 

Similar a How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growth SDK v.0.6.0

How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation WorksSerenaPearson2
 
iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsJustin Briggs
 
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdfPERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdfarfa442827
 
Growth Hacks: Practical Tips for your Mobile Apps
Growth Hacks: Practical Tips for your Mobile AppsGrowth Hacks: Practical Tips for your Mobile Apps
Growth Hacks: Practical Tips for your Mobile AppsDeepak Abbot
 
Progressive Web Application by Citytech
Progressive Web Application by CitytechProgressive Web Application by Citytech
Progressive Web Application by CitytechRitwik Das
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)Bramus Van Damme
 
How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)Andreas Weder
 
Android Instant Apps testing
Android Instant Apps testingAndroid Instant Apps testing
Android Instant Apps testingDiana Pinchuk
 
Lecture #1 Creating your first android project
Lecture #1  Creating your first android projectLecture #1  Creating your first android project
Lecture #1 Creating your first android projectVitali Pekelis
 
Building Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsBuilding Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsDr Ganesh Iyer
 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking Ketan Raval
 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slidesPersonagraph
 
Creating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfCreating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfShaiAlmog1
 
How to design and build great apps
How to design and build great appsHow to design and build great apps
How to design and build great appsMagnolia
 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015MobileMoxie
 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Suzzicks
 

Similar a How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growth SDK v.0.6.0 (20)

How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation Works
 
iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App Actions
 
How to build your own Android App -Step by Step Guide
How to build your own Android App -Step by Step GuideHow to build your own Android App -Step by Step Guide
How to build your own Android App -Step by Step Guide
 
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdfPERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
 
Growth Hacks: Practical Tips for your Mobile Apps
Growth Hacks: Practical Tips for your Mobile AppsGrowth Hacks: Practical Tips for your Mobile Apps
Growth Hacks: Practical Tips for your Mobile Apps
 
Progressive Web Application by Citytech
Progressive Web Application by CitytechProgressive Web Application by Citytech
Progressive Web Application by Citytech
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)
 
How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)
 
Android Instant Apps testing
Android Instant Apps testingAndroid Instant Apps testing
Android Instant Apps testing
 
App Deep Linking
App Deep LinkingApp Deep Linking
App Deep Linking
 
Lecture #1 Creating your first android project
Lecture #1  Creating your first android projectLecture #1  Creating your first android project
Lecture #1 Creating your first android project
 
Android app development guide for freshers by ace web academy
Android app development guide for freshers  by ace web academyAndroid app development guide for freshers  by ace web academy
Android app development guide for freshers by ace web academy
 
Intro to PhoneGap
Intro to PhoneGapIntro to PhoneGap
Intro to PhoneGap
 
Building Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsBuilding Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platforms
 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking
 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slides
 
Creating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfCreating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdf
 
How to design and build great apps
How to design and build great appsHow to design and build great apps
How to design and build great apps
 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
 

Más de Yusuke Takahashi, PhD

MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvas
MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvasMVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvas
MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvasYusuke Takahashi, PhD
 
Introducing ChatCenter Ai (version 20190305) JA
Introducing ChatCenter Ai (version 20190305) JAIntroducing ChatCenter Ai (version 20190305) JA
Introducing ChatCenter Ai (version 20190305) JAYusuke Takahashi, PhD
 
Introducing ChatCenter Ai (version 20190129)
Introducing ChatCenter Ai (version 20190129)Introducing ChatCenter Ai (version 20190129)
Introducing ChatCenter Ai (version 20190129)Yusuke Takahashi, PhD
 
(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
(Conference) Artificial Intelligence for 
Supporting Decisions in BusinessesYusuke Takahashi, PhD
 
- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
- (Conference) Artificial Intelligence for 
Supporting Decisions in BusinessesYusuke Takahashi, PhD
 
(Training) Artificial Intelligence for 
Supporting Decisions in Businesses
(Training) Artificial Intelligence for 
Supporting Decisions in Businesses(Training) Artificial Intelligence for 
Supporting Decisions in Businesses
(Training) Artificial Intelligence for 
Supporting Decisions in BusinessesYusuke Takahashi, PhD
 
Invited Lecture at GnB Accelerator in Jakarta
Invited Lecture at GnB Accelerator in JakartaInvited Lecture at GnB Accelerator in Jakarta
Invited Lecture at GnB Accelerator in JakartaYusuke Takahashi, PhD
 
Case Studies of Awesome Growth Hacks
Case Studies of Awesome Growth HacksCase Studies of Awesome Growth Hacks
Case Studies of Awesome Growth HacksYusuke Takahashi, PhD
 
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...Yusuke Takahashi, PhD
 
高橋雄介: "グロースチームの運営方法" (講演資料)
高橋雄介: "グロースチームの運営方法" (講演資料)高橋雄介: "グロースチームの運営方法" (講演資料)
高橋雄介: "グロースチームの運営方法" (講演資料)Yusuke Takahashi, PhD
 
NIKKEI COMPUTER’s Seminar (07.17.2014)
NIKKEI COMPUTER’s Seminar (07.17.2014)NIKKEI COMPUTER’s Seminar (07.17.2014)
NIKKEI COMPUTER’s Seminar (07.17.2014)Yusuke Takahashi, PhD
 
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!Yusuke Takahashi, PhD
 
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)Yusuke Takahashi, PhD
 

Más de Yusuke Takahashi, PhD (20)

MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvas
MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvasMVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvas
MVPキャンバス v.3.0 日本語版(高橋雄介作成、最新版) #mvpcanvas
 
Introducing ChatCenter Ai (version 20190305) JA
Introducing ChatCenter Ai (version 20190305) JAIntroducing ChatCenter Ai (version 20190305) JA
Introducing ChatCenter Ai (version 20190305) JA
 
Introducing ChatCenter Ai (version 20190129)
Introducing ChatCenter Ai (version 20190129)Introducing ChatCenter Ai (version 20190129)
Introducing ChatCenter Ai (version 20190129)
 
Introduction - Yusuke Takahashi PhD
Introduction - Yusuke Takahashi PhDIntroduction - Yusuke Takahashi PhD
Introduction - Yusuke Takahashi PhD
 
(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
(Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
 
- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
- (Conference) Artificial Intelligence for 
Supporting Decisions in Businesses
 
(Training) Artificial Intelligence for 
Supporting Decisions in Businesses
(Training) Artificial Intelligence for 
Supporting Decisions in Businesses(Training) Artificial Intelligence for 
Supporting Decisions in Businesses
(Training) Artificial Intelligence for 
Supporting Decisions in Businesses
 
Invited Lecture at GnB Accelerator in Jakarta
Invited Lecture at GnB Accelerator in JakartaInvited Lecture at GnB Accelerator in Jakarta
Invited Lecture at GnB Accelerator in Jakarta
 
ChatCenter Aiのご紹介
ChatCenter Aiのご紹介ChatCenter Aiのご紹介
ChatCenter Aiのご紹介
 
ChatCenter Aiのご紹介
ChatCenter Aiのご紹介ChatCenter Aiのご紹介
ChatCenter Aiのご紹介
 
Introducing ChatCenter Ai
Introducing ChatCenter AiIntroducing ChatCenter Ai
Introducing ChatCenter Ai
 
Case Studies of Awesome Growth Hacks
Case Studies of Awesome Growth HacksCase Studies of Awesome Growth Hacks
Case Studies of Awesome Growth Hacks
 
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...
(Invited Talk) "How to surround yourself with machine?" - Invited Talk at The...
 
高橋雄介: "グロースチームの運営方法" (講演資料)
高橋雄介: "グロースチームの運営方法" (講演資料)高橋雄介: "グロースチームの運営方法" (講演資料)
高橋雄介: "グロースチームの運営方法" (講演資料)
 
AppSocially株式会社について
AppSocially株式会社についてAppSocially株式会社について
AppSocially株式会社について
 
NIKKEI COMPUTER’s Seminar (07.17.2014)
NIKKEI COMPUTER’s Seminar (07.17.2014)NIKKEI COMPUTER’s Seminar (07.17.2014)
NIKKEI COMPUTER’s Seminar (07.17.2014)
 
MVP CANVAS
MVP CANVASMVP CANVAS
MVP CANVAS
 
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!
無料!AppSociallyで、スマホ・アプリの招待/口コミを増やそう!
 
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)
Appsocially Deck for New Context Conference 2013, San Francisco (Nov 04, 2013)
 
About AppSocially
About AppSociallyAbout AppSocially
About AppSocially
 

Último

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 

Último (20)

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 

How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growth SDK v.0.6.0

  • 2. CONTENTS founders@appsocial.ly Contents ๏ What is AppSocially? ๏ How it works ๏ Run the Sample App ๏ How to Implement in Your App 1.Add SDK to Your Project 2.Implement Referral Mechanism ๏ What’s Next? ๏ Reference
  • 4. founders@appsocial.lyPROBLEM WE SOLVE THE BIGGEST PROBLEM APP DEVELOPERS HAVE TODAY: WE HELP THEM GET MORE CUSTOMERS
  • 5. founders@appsocial.ly 0% 18% 35% 53% 70% Search App Store Family or Friends Media TV Ad In-App Ad 9% 6% 9% 52% 63% 13%13% 17% 61% 63% HOW DO USERS DISCOVER APPS? Source: Nielsen, Q3 2011 iOS AppStore Android Market AppSocially PLOBLEM founders@appsocial.ly Angel.co/appsocially
  • 7. founders@appsocial.lySDK ::: “ShareThis for mobile” Share Trackable UIActivity Share like Instagram/ Path Aggregated Friend Picker Custom View
  • 8. founders@appsocial.lyACTIONABLE ANALYTICS ::: “Optimizely for mobile”
  • 9. SOLUTION founders@appsocial.ly Having AppSocially is like having mobile- focused ”user growth team as a platform.” What “Growth Team” does Implement Referral Mechanism Track Referral Metrics Optimize Referral Landing Pages What others do for mobile user growth. It takes 3 month w/ 10 people, requires tons of knowledge, skills and experience. What you do w/ AppSocially. ✓Quick install ✓Measure predefined metrics ✓Test different designs + +
  • 14. founders@appsocial.lyHOW IT WORKS A CB ✓A/B Test Templates
  • 16. founders@appsocial.lyRUN THE SAMPLE APP Run the Sample App
  • 17. RUN THE SAMPLE APP founders@appsocial.ly 0. Signup and create an app ๏ Signup for an AppSocially account •http://appsocial.ly ๏ Create new app
  • 18. RUN THE SAMPLE APP founders@appsocial.ly 1. Download SDK from the AppSocially Dashboard Sample projects are included in the ZIP file. Prepare this API Key.
  • 19. RUN THE SAMPLE APP founders@appsocial.ly 2. Create a new app on the Facebook App Dashboard
  • 20. RUN THE SAMPLE APP founders@appsocial.ly 3. Replace the AppSocially API Key and Facebook APP ID [Growth setAPIKey:@"YOUR_APPSOCIALLY_API_KEY"]; [Growth setFacebookAppID:@"YOUR_FACEBOOK_APP_ID"]; (AppDelegate.m) #import <Growth/Growth.h>
  • 21. RUN THE SAMPLE APP founders@appsocial.ly 4. Build & Run!
  • 22. founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP How to Implement in Your App
  • 23. founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP 1. Add SDK to Your Project
  • 24. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly 1. Drag the “GrowthSDK” folder into your project
  • 25. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly 2. Setup your project ๏ Add required frameworks- Accounts.framework - AddressBook.framework - AddressBookUI.framework - CFNetwork.framework - MessageUI.framework - MobileCoreServices.framework - QuartzCore.framework - Security.framework - Social.framework - SystemConfiguration.framework - libresolv.dylib - libxml2.dylib - libiconv.dylib ๏ Update Build Configurations - Set "Other Linker Flags" configiration to "-ObjC -all_load".
  • 26. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly 3. Start Coding! [Growth setAPIKey:@"YOUR_APPSOCIALLY_API_KEY"]; [Growth setFacebookAppID:@"YOUR_FACEBOOK_APP_ID"]; (AppDelegate.m) #import <Growth/Growth.h>
  • 27. founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP 2. Implement Referral Mechanism
  • 28. founders@appsocial.lyHOW TO IMPLEMENT IN YOUR APP Share Trackable UIActivity Share like Instagram/ Path Aggregated Friend Picker Custom View * See “Implement Referral Mechanism” chapter to learn how to implement each patterns.
  • 29. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Action Sheet Type Just 1 line. [Growth showInviteSheetInView:self.view]; Sample Project: FirstSample
  • 30. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Aggregated Friend Picker (Invite like Path) Sample Project: InviteSample Implement the delegate methods. Same as usual UIViewController subclasses. GRFriendPickerViewController *pickerCtr = [[GRFriendPickerViewController alloc] init]; pickerCtr.delegate = self; // customize here [self presentViewController:pickerCtr animated:YES completion:nil]; Call inviteFriends method. [GRInviter inviteFriends:self.pickedFriends inviteInfo:inviteInfo withMessage:NO completion:nil]; - (void)friendPickerViewController:(GRFriendPickerViewController *)controller didPickedFriends:(NSArray *)friends { self.pickedFriends = friends; [controller dismissViewControllerAnimated:YES completion:^{ // do something after friends being picked }]; }
  • 31. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Share Sample Project: ShareSample Call each Sharers. [GRFacebookSharer shareWithItems:shareItems completion:nil]; [GRTwitterSharer shareWithItems:shareItems completion:nil];
  • 32. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Trackable UIActivity Sample Project: ShareSample Same as default UIActivities. GRTrackableTwitterActivity *twitter = [[GRTrackableTwitterActivity alloc] init]; GRTrackableFacebookActivity *facebook = [[GRTrackableFacebookActivity alloc] init]; GRTrackableMailActivity *mail = [[GRTrackableMailActivity alloc] init]; GRTrackableSMSActivity *sms = [[GRTrackableSMSActivity alloc] init]; NSArray *activities = @[twitter, facebook, mail, sms]; UIActivityViewController *activityCtr; activityCtr = [[UIActivityViewController alloc] initWithActivityItems:items applicationActivities:activities];
  • 33. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Share like Instagram Sample Project: ShareSample Same as usual UIViewController subclasses. GRShareComposeViewController *shareCtr; shareCtr = [[GRShareComposeViewController alloc] init]; [self presentViewController:shareCtr animated:YES completion:nil];
  • 34. HOW TO IMPLEMENT IN YOUR APP founders@appsocial.ly Custom View Type Sample Project: Customized View Sample - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { switch (indexPath.row) { case 0: default: // title break; case 1: // Twitter [GRTwitterDMInviter invite:nil completionHandler:nil]; break; case 2: // Facebook [GRFacebookMessageInviter invite:nil completionHandler:nil]; break; case 3: // Mail [GRMailInviter invite:nil completionHandler:nil]; break; case 4: // SMS [GRSMSInviter invite:nil completionHandler:nil]; break; } } Call each inviters.
  • 36. WHAT’S NEXT founders@appsocial.ly What’s next? ๏ Keep track of your customer’s referral metrics on the Dashboard ๏ Edit and personalize your landing pages (= template) on the Dashboard ๏ Available soon: •A/B test different designs of landing pages •Send push notification to your existing customers to accelerate referrals •Customize domain <iloveapp.co/XXXX> -> <yoursomain.com/XXXX>