Merge pull request #6 from felixactv8/master

Compiling in XCode 4.2 with PhoneGap 1.3.0
This commit is contained in:
Davide 2012-02-09 00:37:19 -08:00
commit 615e5eb3ca
1 changed files with 24 additions and 0 deletions

View File

@ -7,6 +7,30 @@ We are brand new to objective-c, so there could be problems with our code!
Installing
==========
/**
For installing with PhoneGap 1.3.0:
in PGSQLitePlugin.h file change for PhoneGaps JSONKit.h implementation.
[code]
#ifdef PHONEGAP_FRAMEWORK
#import <PhoneGap/PGPlugin.h>
#import <PhoneGap/JSONKit.h>
#import <PhoneGap/PhoneGapDelegate.h>
#import <PhoneGap/File.h>
#import<PhoneGap/FileTransfer.h>
#else
#import "PGPlugin.h"
#import "JSON.h"
#import "PhoneGapDelegate.h"
#import "File.h"
#endif
[/code]
In the Project Build Phases tab, select the "Link Binary with Libraries" dropdown menu and add 2 libraries:
libsqlite3.0.dylib
libsqlite3.dylib
Drag .h and .m files into your project's Plugins folder (in xcode) -- I always
just have "Create references" as the option selected.