Installing Cordova Template for iOS on XCode4
Requirements
- Eclipse 3.4+
Install SDK + Cordova
- Download and install Eclipse Classic
- Download and install Android SDK
- Download and install ADT Plugin
- Download the latest copy of Cordova and extract its contents. We will be working with the Android directory.
Setup New Project
Launch Eclipse, and select menu item New > Android Project. Fill out the three panels of the New Android Project wizard shown below.
-
In the root directory of your project, create two new directories:
- /libs
- assets/www
- Copy cordova-1.9.0.js from your Cordova download earlier to assets/www
- Copy cordova-1.9.0.jar from your Cordova download earlier to /libs
- Copy xml folder from your Cordova download earlier to /res
-
Verify that cordova-1.9.0.jar is listed in the Build Path for your project. Right click on the /libs folder and go to Build Paths/ > Configure Build Path.... Then, in the Libraries tab, add cordova-1.9.0.jar to the project. If Eclipse is being temperamental, you might need to refresh (F5) the project once again.
Edit your project's main Java file found in the src folder in Eclipse: - Add import org.apache.cordova.*;
- Change the class's extend from Activity to DroidGap
- Replace the setContentView() line with super.loadUrl("file:///android_asset/www/index.html");
- Right click on AndroidManifest.xml and select Open With > XML Editor
-
Paste the following permissions between the <uses-sdk.../> and <application.../> tags.
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:resizeable="true" android:anyDensity="true" /> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.RECEIVE_SMS" /> <uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <uses-permission android:name="android.permission.BROADCAST_STICKY" />
- Support orientation changes by pasting the folowing inside the <activity> tag.
android:configChanges="orientation|keyboardHidden|screenSize"
- Support orientation changes by pasting the folowing inside the <activity> tag.
No comments:
Post a Comment