Reputation: 15
I've built to the Android app store problem free for the past couple of years, but recently I started receiving this error:
Android SDK version 4.4.2 not found.
I can build to the Genymotion emulator with no problem as well, the problem is exclusive to Android app store builds.
Any help will be greatly appreciated.
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="6001" android:versionName="6.0.1">
<application android:theme="@style/Theme.NoActionBar"/>
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23"/>
</manifest>
</android>
--
Operating System
Name = Mac OS X
Version = 10.11.3
Architecture = 64bit
# CPUs = 8
Memory = 17179869184
Node.js
Node.js Version = 0.12.7
npm Version = 2.11.3
Titanium CLI
CLI Version = 5.0.5
Titanium SDK
SDK Version = 5.1.2.GA
SDK Path = /Users/keithtucci/Library/Application Support/Titanium/mobilesdk/osx/5.1.2.GA
Target Platform = iphone
Command
Upvotes: 0
Views: 473
Reputation: 81
i had API 23 installad, to solve I open .settings\com.appcelerator.titanium.android.core.prefs file in project dir and remove those lines:
android/abi=armeabi-v7a
android/abi.type=String
android/sdk_version=4.4.2
android/sdk_version.type=String
Upvotes: 0
Reputation: 3866
You need to install API 23 since this is what you (and also 5.1.2 by default) target but from the screenshot seems to be not installed.
Upvotes: 1