I have successfully converted an android app using ADT plugin in eclipse and have couple of confussed situations.
I went through this Documentation regarding the process but in this video still mention about the "Code signing keys" which is the Old process and now not valid any more... Instead we have to use Blackberry ID. This Tutorial explains this in detail.
I my android application in the manifest file I have included followings.
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
I followed the following steps in the process
- Right click project -> Blackberry tools -> Add blackberry nature to project
- Right click project -> Blackberry tools -> Veryfy APK
- Right click project -> Blackberry tools -> Sign for blackberry world
When I perfrom the above step2 level I am getting the following warnings Problems section in eclipse
This Tutorial explains that the the android application targetSdkVersion
should be 10. But the problem is when I change the project build target to 10 as follows, I am getting lots of errors.
- Right click project -> Properties -> Project Build target
Questions
How to successfully configure the Build target(Android app) to 10 in my application. Which is 17 at the moment?
The 3rd warning in the screen shot says to target to the latest which I can not do as it should be 10 according to our requirement to PORT android app to blackberry.
No Idea of the 1st warning message in the Screen shot.
Also before add it to Blackberry World do I have to change minimum OS version in the following place? (Right click project -> Properties -> Blackberry -> Minimum OS version)
Finally how can I have the exact version number I want in Blackberry Bar manifest file. It automatically adds that value taking Android Manifest file "versionCode" in to consideration, but it is confusing.
For example when
android:versionCode="1"
Bar manifest createsPackage-Version: 1.0.1.0