{ "id": "170764", "key": "TIMOB-25658", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2018-01-17T17:03:22.000+0000", "created": "2018-01-09T21:27:57.000+0000", "priority": { "name": "Critical", "id": "1" }, "labels": [ "alloy", "android", "sdk-7", "titanium" ], "versions": [ { "id": "17609", "description": "", "name": "Release 7.0.0", "archived": false, "released": true, "releaseDate": "2017-12-07" } ], "issuelinks": [ { "id": "56256", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "170756", "key": "TIMOB-25656", "fields": { "summary": "Android. TiViewProxy.getOrCreateView returns null on Titanium 7.0.0+", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Critical", "id": "1" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "updated": "2018-01-17T17:03:22.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "I have a news application on Titanium that was working fine on SDK 6.3.0. Since the update to SDK 7.0.1, I am facing a NullPointerException on Android.\r\n\r\nI have narrowed down the issue so that I have now a simple test case to reproduce it. Enclosed are the crash logs and the sources used on this sample :\r\n- models/article.js : simple sql article model with id and status fields\r\n- index.xml and index.js : simple news list view and controller\r\n- article.xml and article.js : simple news detail view and controller\r\n\r\nThe sample works as follows. At launch, a list of news is displayed as a TableView. Each row displays a title and a status.\r\nWhen you click on an item, a new window is opened to display the news details. In that screen, you must click on the view to set the news status to 1.\r\nWhen you go back, the list is displayed and the status has been updated on the selected row.\r\nNow as soon as you try to scroll down the screen, the application crashes.\r\n\r\nThe issue is due to the Alloy Collection update to set the article status to 1.\r\n{code:js}\r\nfunction read() {\r\n\tvar article = Alloy.Collections.article.at(index);\r\n\tarticle.save({status: 1});\r\n}\r\n{code}\r\n\r\nRegards", "attachment": [ { "id": "63933", "filename": "app.zip", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-09T19:15:44.000+0000", "size": 2508, "mimeType": "application/zip" }, { "id": "63938", "filename": "environment_check.txt", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-10T13:50:15.000+0000", "size": 4663, "mimeType": "text/plain" }, { "id": "63937", "filename": "genymotion_console_logs.txt", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-10T13:50:17.000+0000", "size": 11317, "mimeType": "text/plain" }, { "id": "63932", "filename": "log.txt", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-09T19:17:52.000+0000", "size": 21356, "mimeType": "text/plain" }, { "id": "63939", "filename": "TableTest.zip", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-10T13:52:10.000+0000", "size": 9405134, "mimeType": "application/zip" } ], "flagged": false, "summary": "TableView NullPointerException on getOuterView Titanium 7.0.1 Android", "creator": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "subtasks": [], "reporter": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "environment": "macOS 10.12.6, SDK 7.0.1", "comment": { "comments": [ { "id": "432951", "author": { "name": "mrahman", "key": "mrahman", "displayName": "Mostafizur Rahman", "active": true, "timeZone": "Asia/Dhaka" }, "body": "Hello [~sliemlahi],\r\nTested the issue on Android 7 device using SDK 7.0.1.GA. After running we do the following:\r\n\r\n\r\n1)When click on an item, a new window is opened to display the news details. In that screen, we click on the view to set the news status to 1.\r\n2)When you go back, the list is displayed and the status has been updated on the selected row.\r\n\r\n3)Got the following error without any crash:\r\n{code}\r\n\r\n [ERROR] : BoostFramework: BoostFramework() : Exception_1 = java.lang.ClassNotFoundException: Didn't find class \"com.qualcomm.qti.Performance\" on path: DexPathList[[],nativeLibraryDirectories=[/system/lib, /vendor/lib]]\r\n\r\n{code}\r\n\r\nCan you please share the missing class *com.qualcomm.qti.Performance*? so that we can test again to reproduce the issue.\r\n\r\n\r\n*Console logs:*\r\n\r\n{code}\r\n\r\nWARN] : SELinux: SELinux selinux_android_compute_policy_index : Policy Index[2], Con:u:r:zygote:s0 RAM:SEPF_SECMOBILE_7.0_0009, [-1 -1 -1 -1 0 1]\r\n[INFO] : TiApplication: (main) [0,0] checkpoint, app created.\r\n[INFO] : TiApplication: (main) [54,54] Titanium 7.0.1 (2017/12/18 10:42 undefined)\r\n[INFO] : MultiDex: VM with version 2.1.0 has multidex support\r\n[INFO] : MultiDex: install\r\n[INFO] : MultiDex: VM has multidex support, MultiDex support library is disabled.\r\n[WARN] : TiAndroid: (main) [1677,1731] Application instance no longer available. Unable to get current activity.\r\n[WARN] : TiAndroid: (main) [2,1733] Application instance no longer available. Unable to get current activity.\r\n[WARN] : TiAndroid: (main) [0,1733] Application instance no longer available. Unable to get current activity.\r\n[INFO] : TiApplication: (main) [18,1751] Titanium Javascript runtime: v8\r\n[WARN] : art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable\r\n[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null\r\n[WARN] : TiApplication: (main) [120,120] Registering module with name already in use.\r\n[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity resume. activity = com.gsl.rakhiAlloy.RakhialloyActivity@a09424f\r\n[INFO] : InputMethodManager: HSI ignore mServedView == null or mServedView.getWindowToken() != windowToken, mServedView :0\r\n[INFO] : InputMethodManager: HSI ignore mServedView == null or mServedView.getWindowToken() != windowToken, mServedView :0\r\n[INFO] : OpenGLRenderer: Initialized EGL, version 1.4\r\n[INFO] : art: Do partial code cache collection, code=30KB, data=30KB\r\n[INFO] : art: After code cache collection, code=29KB, data=30KB\r\n[INFO] : art: Increasing code cache capacity to 128KB\r\n[INFO] : Choreographer: Skipped 59 frames! The application may be doing too much work on its main thread.\r\n[INFO] : art: Do partial code cache collection, code=55KB, data=62KB\r\n[INFO] : art: After code cache collection, code=55KB, data=62KB\r\n[INFO] : art: Increasing code cache capacity to 256KB\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[ERROR] : BoostFramework: BoostFramework() : Exception_1 = java.lang.ClassNotFoundException: Didn't find class \"com.qualcomm.qti.Performance\" on path: DexPathList[[],nativeLibraryDirectories=[/system/lib, /vendor/lib]]\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x0 (0)\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x1 (0)\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x0 (0)\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x1 (0)\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : art: Do full code cache collection, code=106KB, data=121KB\r\n[INFO] : art: After code cache collection, code=83KB, data=87KB\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x0 (0)\r\n[INFO] : I/InputDispatcher( 2853): Delivering key to : action: 0x1 (0)\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : art: Background partial concurrent mark sweep GC freed 23575(823KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 17MB/28MB, paused 936us total 114.488ms\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : art: Background partial concurrent mark sweep GC freed 130819(8MB) AllocSpace objects, 5(288KB) LOS objects, 40% free, 12MB/20MB, paused 1.152ms total 109.981ms\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : APSAnalyticsService: Analytics Service Started\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false\r\n[INFO] : APSAnalyticsService: Stopping Analytics Service\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x0, toolType: 1\r\n[INFO] : I/InputDispatcher( 2853): Delivering touch to : action: 0x1, toolType: 1\r\n\r\n\r\n{code}\r\n\r\nThanks", "updateAuthor": { "name": "mrahman", "key": "mrahman", "displayName": "Mostafizur Rahman", "active": true, "timeZone": "Asia/Dhaka" }, "created": "2018-01-10T04:56:37.000+0000", "updated": "2018-01-10T05:00:06.000+0000" }, { "id": "432971", "author": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "body": "Hi,\r\n\r\nI don't know what it this com.qualcomm.qti.Performance class. I have no such class in the sample project.\r\nTo make things easier, I uploaded a full Alloy sample project created simply like that below.\r\n\r\n{code}\r\nappc new -t titanium\r\nAppcelerator Command-Line Interface, version 7.0.1\r\nCopyright (c) 2014-2018, Appcelerator, Inc. All Rights Reserved.\r\n? What's the project name? TableTest\r\n? What's your application id (example: com.myapp)? com.test.table\r\n[INFO] Creating app project\r\n[INFO] Template directory: /Users/XXX/Library/Application Support/Titanium/mobilesdk/osx/7.0.1.GA/templates/app/default\r\n[INFO] Writing tiapp.xml\r\n[INFO] Project created successfully in 478ms\r\n? Would you like to enable native API access with Hyperloop for this app? No\r\n*** new completed. ***\r\n{code}\r\n\r\nI then copied the 5 files included previously : model, controllers and views.\r\nThen I launched the project by executing the following command line :\r\n\r\n{code}\r\nappc run -p android -C \"Google Nexus 5X - 7.1.0 - API 25 - 1080x1920\"\r\n{code}\r\n\r\nAlso, please do not forget to scroll down the list in step 3 to make the application crash.\r\n\r\nI have attached the new following files :\r\n- full new alloy project as stated before\r\n- environment check output\r\n- genymotion console logs of this new project\r\n\r\nRegards", "updateAuthor": { "name": "sliemlahi", "key": "sliemlahi", "displayName": "Saïd Liemlahi", "active": true, "timeZone": "Africa/Casablanca" }, "created": "2018-01-10T13:48:52.000+0000", "updated": "2018-01-10T13:56:40.000+0000" }, { "id": "432974", "author": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "body": "[~sliemlahi] Thank you for the test case. I was able to reproduce the issue with it.", "updateAuthor": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "created": "2018-01-10T14:48:32.000+0000", "updated": "2018-01-10T14:48:32.000+0000" }, { "id": "433041", "author": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "body": "-PR-: https://github.com/appcelerator/titanium_mobile/pull/9720\r\nnew PR: https://github.com/appcelerator/titanium_mobile/pull/9721", "updateAuthor": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "created": "2018-01-11T16:59:46.000+0000", "updated": "2018-01-12T11:04:50.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }