android-sdk-2.3
Could not find adb.exe – after upgrade to Android SDK 2.3
I simply did “Help” -> “Check for uppdates” in Eclipse. Then I checked every update possible (I had 2) accepted, waited for the updates to complete, restarted Eclipse and then everything was fixed! I had some new build errors after the update, though, saying something like: error: Multiple substitutions specified in non-positional format; did you … Read more
Getting error while running `react-native run-android`
As some has mentioned, the problem is that the RN build automatically “upgraded” to androidx.core:core:1.7.0-alpha01, which depends on SDK version 30. The Fix The fix is simply to specify android core version via androidXCore in build.gradle buildscript { ext { buildToolsVersion = “29.0.3” minSdkVersion = 23 compileSdkVersion = 29 targetSdkVersion = 29 ndkVersion = “20.1.5948944” … Read more
Unable to resolve target ‘android-16’
I have had the same problem, after an update I got a similar error. It can be fixed to manually edit the project.properties file and update the android-16 part to the latest one you have installed. In your current case that is android-17. I guess it can be configured using Android ADT as well, but … Read more
“Unable to get system library for project” after I upgraded to Android SDK 2.3 and ADT 8.0
For me, the problem was that in the Project settings – Android tab, I had no Android version selected.
Stuck at “.android/repositories.cfg could not be loaded.”
Create the file! try: mkdir -p .android && touch ~/.android/repositories.cfg
How do I build the Android SDK with hidden and internal APIs available?
This is what I always do to use hidden api. Build the repo or download jars from https://sites.google.com/site/hippunosource/home/android/androidnohide-apiwo-shi-yongsuru-rifurekushonha-wei-shi-yong copy out out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar (better to rename it as something like framework_all.jar) config your project build path–>libraries –> add this external jars. In Order and Export, move it up and before android.jar