Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Be compatible to Titanium Mobile SDK 1.5.1 #1905

Closed
tsteur opened this issue Dec 20, 2010 · 6 comments
Closed

Be compatible to Titanium Mobile SDK 1.5.1 #1905

tsteur opened this issue Dec 20, 2010 · 6 comments
Assignees

Comments

@tsteur
Copy link
Member

tsteur commented Dec 20, 2010

A few days ago appcelerator released the 1.5.1 version of Titanium Mobile SDK. Piwik Mobile is currently not compatible with 1.5.*.

Following changes are required:

  • We have to change the tiapp.xml and remove the AndroidManifest.custom.xml
  • Android OptionMenu API is totally different now
  • App crashes on Android and doesn't display statistics when opening statistics window
  • There are certainly even more errors
@tsteur
Copy link
Member Author

tsteur commented Dec 20, 2010

(In [3475]) refs #1905 since Titanium 1.5 the custom Android Manifest is deprecated, we have to define changes to default Android Manifest in tiapp.xml now

@tsteur
Copy link
Member Author

tsteur commented Dec 21, 2010

iOS + Titanium 1.5 does work

I found further issues for Android + Titanium 1.5

  • selectedBackgroundColor is deprecated, use backgroundSelectedColor instead (W/TableViewRowProxy)
  • Changing hasCheck on runtime within a TableViewRow isn't working (icon does not toggle)
  • No statistics will be displayed cause an (values instanceof Array) check fails although it is an array. There seems to be an issue when assigning an Array to a View:
var arr = [];
Log.warn(arr instanceof Array);
// [WARN] [20,12478] "true"
var view = Titanium.UI.createView();
view.arr = arr;
Log.warn(view.arr instanceof Array);
// [WARN] [16,12517] "false"

@tsteur
Copy link
Member Author

tsteur commented Dec 21, 2010

App crashes on Android when trying to display a graph in statistics view with the following stack trace:

http://pastie.org/1396311

@tsteur
Copy link
Member Author

tsteur commented Dec 23, 2010

@tsteur
Copy link
Member Author

tsteur commented Jan 30, 2011

Most issues are fixed but they will be only included from Titanium Mobile SDK 1.6. So we have to be compatible to 1.6. It will not be compatible to previous Titanium Mobile SDK versions afterwards

@tsteur
Copy link
Member Author

tsteur commented Feb 2, 2011

(In [3834]) fixes #1905 we are now compatible to at least Titanium SDK version: 1.6.0 (01/29/11 17:49 f9036efc1f4a524603bf)

@tsteur tsteur added this to the Piwik Mobile Client milestone Jul 8, 2014
@tsteur tsteur self-assigned this Jul 8, 2014
@tsteur tsteur added this to the Piwik Mobile 1 milestone Jul 25, 2014
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant