diff --git a/README.md b/README.md index 33fab581..ba2244dd 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,9 @@ Getting Started with PhoneGap/Android 1. From the root of this repo run the following command to generate a new PhoneGap/Android app:
    
-    ./droidgap [android_sdk_path] [target] [name] [package_name] [www] [path]
+    ./droidgap [android_sdk_path] [name] [package_name] [www] [path]
 
     android_sdk_path ... The path to your Android SDK install.
-    target ......................The target version of the Android platform (3, 4, 6, 7, 8 correspond to 1.5, 1.6, 2.0.1, 2.1, 2.2).
     name ............... The name of your application.
     package_name ....... The name of your package (For example: com.nitobi.demo)
     www ................ The path to your www folder. (Wherein your HTML, CSS and JS app is.)
diff --git a/droidgap b/droidgap
index af27e1eb..7c9d9d1e 100755
--- a/droidgap
+++ b/droidgap
@@ -3,10 +3,10 @@ require 'fileutils'
 
 # ./droidgap /Users/brianleroux/Code/android-sdk-mac MyApp com.westcoastlogic example /Users/brianleroux/Desktop/MyApp
 class Build
-  attr_reader :android_sdk_path, :name, :pkg, :www, :path, :target_id
+  attr_reader :android_sdk_path, :name, :pkg, :www, :path
   
   def initialize(*a)
-    @android_sdk_path, @target, @name, @pkg, @www, @path = a
+    @android_sdk_path, @name, @pkg, @www, @path = a
     @android_dir = File.expand_path(File.dirname(__FILE__))
     @framework_dir = File.join(@android_dir, "framework")
   end
@@ -44,8 +44,9 @@ class Build
   # TODO fix 'android' shell call so that it works on Windows. Can't prepend android command with path to it.
   def create_android
     android_exec = File.join(@android_sdk_path, "tools", "android");
+    target_id = 8
     puts "Creating Android project for target level #{ target_id }"
-    `android create project -t #{ @target_id } -k #{ @pkg } -a #{ @name } -n #{ @name } -p #{ @path }`
+    `android create project -t #{ target_id } -k #{ @pkg } -a #{ @name } -n #{ @name } -p #{ @path }`
   end
   
   def include_www