I'm getting an error with a red mark on this line in the manifest xml file:
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
When i removed it, it was fine however inside of the emulator the app was upside down.
Any clue how to fix this?
The app is set to Android 2.3.3 ..
thanks
Comments
Check out these threads for more info
http://www.giderosmobile.com/forum/discussion/633/step-by-step-gideros-mobile-to-apk#Item_1
http://www.giderosmobile.com/forum/discussion/567/new-version-gideros-studio-2012.2.1#Item_5
@atilim you got rusty, that's what vacation do to your body and mind
thanks! gosh i really hate android, is that difficult to upgrade? i've already had a miserable experience upgrading from 3.5 to 3.7
am i missing something?
edit--> i think i have it after reading the other post. i can target 4.03 however, it will work for Android devices 2.2 and above correct?!
if so perfect!
android:minSdkVersion
An integer designating the minimum API Level required for the application to run. The Android system will prevent the user from installing the application if the system's API Level is lower than the value specified in this attribute. You should always declare this attribute.
android:targetSdkVersion
An integer designating the API Level that the application is targetting.
With this attribute set, the application says that it is able to run on older versions (down to minSdkVersion), but was explicitly tested to work with the version specified here. Specifying this target version allows the platform to disable compatibility settings that are not required for the target version (which may otherwise be turned on in order to maintain forward-compatibility) or enable newer features that are not available to older applications. This does not mean that you can program different features for different versions of the platform—it simply informs the platform that you have tested against the target version and the platform should not perform any extra work to maintain forward-compatibility with the target version.
i have it working but i get this error in the logcat
07-23 16:05:28.664: E/libEGL(652): called unimplemented OpenGL ES API
i haved added this to the manifestL
but it keeps calling that error
http://www.giderosmobile.com/forum/discussion/1039/error-in-android-devices-not-supporting-opengl2.0also-textfield-is-not-displayed#Item_6
thanks
Does it cause problems for the user?
1-Key file that you signed apk.
2-same package name
If you have those you can update you apk and publish it again in google play.
i'll try to compile it again from gideros and add to eclipse!