mirror of
https://github.com/moparisthebest/PhoneGap-SQLitePlugin-Android
synced 2024-11-23 01:02:14 -05:00
PhoneGap 1.3.0
Included file changes in .h file for PhoneGap 1.3.0 implementation as well as needed libraries in order for xcode to compile.
This commit is contained in:
parent
f4d756c2c5
commit
ba625d6036
23
README.md
23
README.md
@ -7,7 +7,30 @@ We are brand new to objective-c, so there could be problems with our code!
|
|||||||
|
|
||||||
Installing
|
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:
|
||||||
|
1. libsqlite3.0.dylib
|
||||||
|
2. libsqlite3.dylib
|
||||||
|
|
||||||
|
**/
|
||||||
Drag .h and .m files into your project's Plugins folder (in xcode) -- I always
|
Drag .h and .m files into your project's Plugins folder (in xcode) -- I always
|
||||||
just have "Create references" as the option selected.
|
just have "Create references" as the option selected.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user