appcelerator-titanium

Trouble installing Android SDK for Appcelerator studio on windows 7

送分小仙女□ 提交于 2019-12-01 07:29:14
问题 I have trouble installing Appcelerator studio on windows 7. I am getting the following error when trying to create a new mobile project (Alloy project) and run the same on an android device. Works fine on mobile web. [ERROR] : No valid Android SDK targets found. [ERROR] : Please download an Android SDK target API level 23 or newer from the Android SDK Manager and try again. The android SDK is already in place and have properly referenced it. Still no luck there. Please find the platform

Post iOS10 / Xcode 8.0 “Missing Push Notification Entitlement” error after build for iTunes Store

£可爱£侵袭症+ 提交于 2019-11-30 12:18:23
Whilst building for iTunes store and submitting the archive, I receive this error from apple: Dear developer, We have discovered one or more issues with your recent delivery for "XXXXXXXXX". Your delivery was successful, but you may wish to correct the following issues in your next delivery: Missing Push Notification Entitlement - Your app includes an API for Apple's Push Notification service, but the aps-environment entitlement is missing from the app's signature. To resolve this, make sure your App ID is enabled for push notification in the Provisioning Portal. Then, sign your app with a

TableView: content hidden on rows that are not screen visible (android)

一笑奈何 提交于 2019-11-29 18:01:58
I've a calendar widget, that is a TableView rotated -90 degrees, after set the TableView data, I add a View rotated 90 degrees the TableViewRows, and set to those Views the new height and width. On 'scrollend' event, if this reach the TableView limits, at the end of the TableView I push another 20 rows to the end of the TableView data, and at the beginning I unshift 20 rows to the beginning of the TableView data. This works perfectly on iOS, but on android there is a issue that I can't understand why: all the screen visible TableViewRows are fine (5), but when I scroll to the other

Post iOS10 / Xcode 8.0 “Missing Push Notification Entitlement” error after build for iTunes Store

感情迁移 提交于 2019-11-29 17:54:25
问题 Whilst building for iTunes store and submitting the archive, I receive this error from apple: Dear developer, We have discovered one or more issues with your recent delivery for "XXXXXXXXX". Your delivery was successful, but you may wish to correct the following issues in your next delivery: Missing Push Notification Entitlement - Your app includes an API for Apple's Push Notification service, but the aps-environment entitlement is missing from the app's signature. To resolve this, make sure

How to request run-time recording permission on Android 6.0?

淺唱寂寞╮ 提交于 2019-11-29 08:51:48
Since Android 6.0, we need to request permissions during app runtime. In my app, i'm using local storage, camera, geolocation and audio recording permissions. So, requesting for local storage, camera and geolocation is ok with that snippet : https://github.com/appcelerator-developer-relations/appc-sample-ti510/blob/master/app/controllers/permissions.js But i've not found how to request for audio recording permission...I actually use titutorial.audiorecorder module for Android and it crashes when i tried to record since Android 6.0 because permission for recording is not enable. More

TableView: content hidden on rows that are not screen visible (android)

守給你的承諾、 提交于 2019-11-28 11:45:29
问题 I've a calendar widget, that is a TableView rotated -90 degrees, after set the TableView data, I add a View rotated 90 degrees the TableViewRows, and set to those Views the new height and width. On 'scrollend' event, if this reach the TableView limits, at the end of the TableView I push another 20 rows to the end of the TableView data, and at the beginning I unshift 20 rows to the beginning of the TableView data. This works perfectly on iOS, but on android there is a issue that I can't

How to request run-time recording permission on Android 6.0?

两盒软妹~` 提交于 2019-11-28 02:17:25
问题 Since Android 6.0, we need to request permissions during app runtime. In my app, i'm using local storage, camera, geolocation and audio recording permissions. So, requesting for local storage, camera and geolocation is ok with that snippet : https://github.com/appcelerator-developer-relations/appc-sample-ti510/blob/master/app/controllers/permissions.js But i've not found how to request for audio recording permission...I actually use titutorial.audiorecorder module for Android and it crashes