Method: AndroidProject#preconfigure

Defined in:
lib/makeconf/androidproject.rb

#preconfigureObject



70
71
72
73
74
75
76
77
78
# File 'lib/makeconf/androidproject.rb', line 70

def preconfigure

  printf 'checking for the Android NDK.. '
  throw 'Unable to locate the NDK. Please set the --with-ndk variable to the correct path' if @ndk_path.nil?
  puts @ndk_path
  printf 'checking for the Android SDK.. '
  throw 'Unable to locate the SDK. Please set the --with-sdk variable to the correct path' if @sdk_path.nil?
  puts @sdk_path
end