{ "id": "173894", "key": "TIMOB-27252", "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": [ { "id": "20832", "name": "Release 8.3.0", "archived": false, "released": true, "releaseDate": "2019-11-25" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2019-10-30T18:11:50.000+0000", "created": "2019-07-18T04:59:38.000+0000", "priority": { "name": "None", "id": "6" }, "labels": [], "versions": [], "issuelinks": [], "assignee": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "updated": "2019-10-30T18:11:50.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": [], "description": "The customer is trying to implement instabug sdk in appcelerator app for android and IOS both. They are using real device and Xcode version 10.2.1.\r\n\r\n*iOS:* \r\n\r\nThey followed all the steps from [here|https://instabug.com/platforms/ios] . Inclusion of pod file didn't work correctly. They have manually downloaded the framework and placed it under the platform/ios directory and that trick worked. \r\n{code}\r\nvar instabug = require(\"Instabug/Instabug\"); \r\n{code}\r\n\r\nThis statement also works as statement provided below also works.\r\n{code}\r\n\r\ninstabug.startWithTokenInvocationEvents(\"f7f4797d8e2a5893f2d4cf992883867a\");\r\n{code}\r\n\r\nOnly thing they are not able to do is they are suppose to pass IBGInvocationEventShake. \r\n\r\n[Instabug startWithToken:@\"YOUR-TOKEN-HERE\" invocationEvents: IBGInvocationEventShake | IBGInvocationEventScreenshot];\r\n\r\nNote: \r\n{code}\r\nWe suggested them to use:\r\nconst Instabug = require('Instabug/Instabug');\r\nInstabug.startWithTokenInvocationEvents('YOUR_TOKEN', Instabug.IBGInvocationEventShake | Instabug.IBGInvocationEventScreenshot)\r\n\r\nIt doesn't work for them. It initializes but still not initializing on vibrating mode that means to them parameters are not passed.\r\n{code}\r\n\r\n*Android:*\r\n\r\nWhile adding instabug on android, getting details about android sdk integration based in below [url|https://docs.instabug.com/docs/android-integration#section-maven]. They are using SDK - 8.0.2 hyperloop - 4.0.2 android API 26. They are facing below issues:\r\n1. *build.gradle* is not working as mentioned in https://wiki.appcelerator.org/display/guides2/Android+Hyperloop+Programming+Guide. \r\n2. Downloaded all the jars mentioned in gradle manually. Then getting below error. Attaching all the jars that they have included just for references. \r\n3. When they researched this is related to android snackbar but since they are not able to use gradle they can't add gradle script for snackbar as well.\r\n\r\n{code}\r\n[INFO] : Generating i18n files \r\n[DEBUG] : Writing en strings => /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/strings.xml \r\n[WARN] : Overwriting XML node close in file /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/values.xml \r\n[INFO] : Generating /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/theme.xml \r\n[INFO] : Running AAPT: /Users/v412636/Library/Android/sdk/build-tools/28.0.3/aapt \"package\" \"-f\" \"-m\" \"-J\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/gen\" \"-M\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/AndroidManifest.xml\" \"-A\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/bin/assets\" \"-S\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res\" \"-I\" \"/Users/v412636/Library/Android/sdk/platforms/android-28/android.jar\" \"-F\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/bin/app.ap_\" \"--ignore-assets\" \"!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~\" \"--output-text-symbols\" \"/Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/intermediates/bundles\" \"--no-version-vectors\" \"--auto-add-overlay\" \"--extra-packages\" \"ti.modules.titanium.ui:android.support.coreui:android.support.coreutils:android.support.exifinterface:android.support.fragment:android.support.graphics.drawable.animated:android.support.graphics.drawable:android.support.mediacompat:android.support.transition:android.support.v4:android.support.v7.appcompat:android.support.v7.recyclerview:android.support.compat:android.support.design:android.support.v7.cardview\"\r\n[ERROR] Application Installer abnormal process termination. Process exit value was 1 \r\n[ERROR] : Failed to package application: \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values-no/values-no.xml:96: warning: string 'ib_str_report_data' marked untranslatable but exists in locale 'no' \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values-no/values-no.xml:129: warning: string 'instabug_str_empty' marked untranslatable but exists in locale 'no' \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values-no/values-no.xml:142: warning: string 'instabug_str_next' marked untranslatable but exists in locale 'no' \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values-no/values-no.xml:147: warning: string 'instabug_str_plus' marked untranslatable but exists in locale 'no' \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values-no/values-no.xml:153: warning: string 'instabug_str_send' marked untranslatable but exists in locale 'no' \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/values.xml:1576: error: Error: No resource found that matches the given name: attr 'borderWidth'. \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/values.xml:1572: error: Error: No resource found that matches the given name: attr 'fabSize'. \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/values.xml:1574: error: Error: No resource found that matches the given name: attr 'pressedTranslationZ'. \r\n[ERROR] : \r\n[ERROR] : /Users/v412636/Documents/Main Folder/Appc-Bitbucket/Label_Audit/build/android/res/values/values.xml:1575: error: Error: No resource found that matches the given name: attr 'rippleColor'. \r\n\r\n{code}", "attachment": [ { "id": "66774", "filename": "12-attached-files-20190717215836.zip", "author": { "name": "rmitro", "key": "rmitro", "displayName": "Rakhi Mitro", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2019-07-18T05:00:29.000+0000", "size": 2322786, "mimeType": "application/zip" }, { "id": "66789", "filename": "instabug-all.zip", "author": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "created": "2019-07-30T14:22:33.000+0000", "size": 2845698, "mimeType": "application/zip" } ], "flagged": false, "summary": "Hyperloop: Implement instabug sdk in appcelerator app for android and IOS", "creator": { "name": "rmitro", "key": "rmitro", "displayName": "Rakhi Mitro", "active": false, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "rmitro", "key": "rmitro", "displayName": "Rakhi Mitro", "active": false, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "450153", "author": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/11094", "updateAuthor": { "name": "ybanev", "key": "ybanev", "displayName": "Yordan Banev", "active": true, "timeZone": "Europe/Athens" }, "created": "2019-07-30T14:14:33.000+0000", "updated": "2019-07-30T14:14:33.000+0000" }, { "id": "452352", "author": { "name": "ssekhri", "key": "ssekhri", "displayName": "Satyam Sekhri", "active": true, "timeZone": "America/Los_Angeles" }, "body": "FR Passed.\r\nWaiting on Jenkins build.", "updateAuthor": { "name": "ssekhri", "key": "ssekhri", "displayName": "Satyam Sekhri", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-10-29T23:57:08.000+0000", "updated": "2019-10-29T23:57:08.000+0000" }, { "id": "452371", "author": { "name": "cwilliams", "key": "cwilliams", "displayName": "Christopher Williams", "active": true, "timeZone": "America/New_York" }, "body": "merged to master", "updateAuthor": { "name": "cwilliams", "key": "cwilliams", "displayName": "Christopher Williams", "active": true, "timeZone": "America/New_York" }, "created": "2019-10-30T15:47:16.000+0000", "updated": "2019-10-30T15:47:16.000+0000" }, { "id": "452384", "author": { "name": "ssekhri", "key": "ssekhri", "displayName": "Satyam Sekhri", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified on:\r\nMac OS: 10.14.5\r\nSDK: 8.3.0.v20191030085531\r\nAppc CLI: 7.1.1\r\nJDK: 1.8.0_162\r\nNode: 10.5.0\r\nStudio: 5.1.4.201909061933", "updateAuthor": { "name": "ssekhri", "key": "ssekhri", "displayName": "Satyam Sekhri", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-10-30T18:11:50.000+0000", "updated": "2019-10-30T18:11:50.000+0000" } ], "maxResults": 16, "total": 16, "startAt": 0 } } }