[jira] [Commented] (CB-5848) Support for Android expansion files

2017-03-28 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15945427#comment-15945427
 ] 

BeTop commented on CB-5848:
---

Hello, How are you doing?
Today I got problem to play audio file of obb file.

It works 

But Media plugin is not working. so we need solution.

var url = 
"content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";

var my_media = new Media(url,
// success callback
function() {
console.log("playAudio():Audio Success");
},
// error callback
function(err) {
console.log("playAudio():Audio Error: ",  err);
}
);
// Play audio
my_media.play();

I got error code=1.



> Support for Android expansion files
> ---
>
> Key: CB-5848
> URL: https://issues.apache.org/jira/browse/CB-5848
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android
>Affects Versions: 3.3.0
>Reporter: Valerio Santinelli
>Assignee: jcesarmobile
>Priority: Minor
>
> As you might already know, Android .APK files cannot exceed 50Mb if you want 
> to make them available on Google Play Store.
> For bigger apps, you can add one or more expansion files (.obb)
> The request would be to have Cordova automatically put the content of the www 
> folder into an obb file so that all the assets won't be bundled with the app 
> itself. 
> That way, even if the assets are huge, you can still publish on Google Play 
> Store.
> Right now there is no way to publish any app that exceeds 50Mb. I have seen 
> some OS projects trying to deal with this, but right now there's no working 
> solution.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-12611) Support for Android expansion Audio file

2017-03-28 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15945434#comment-15945434
 ] 

BeTop commented on CB-12611:


I installed xapkreader plugin correctly, so   tag works fine.
but when I tried to play with Media plugin, It returned error code 1.
so this should be solved.

> Support for Android expansion Audio file
> 
>
> Key: CB-12611
> URL: https://issues.apache.org/jira/browse/CB-12611
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
>Reporter: BeTop
>
> Hello, How are you doing?
> Today I got problem to play audio file of obb file.
> It works  src="content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3">
> But Media plugin is not working. so we need solution.
> var url = 
> "content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";
> var my_media = new Media(url,
> // success callback
> function()
> { console.log("playAudio():Audio Success"); }
> ,
> // error callback
> function(err)
> { console.log("playAudio():Audio Error: ", err); }
> );
> // Play audio
> my_media.play();
> I got error code=1.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-12611) Support for Android expansion Audio file

2017-03-28 Thread BeTop (JIRA)
BeTop created CB-12611:
--

 Summary: Support for Android expansion Audio file
 Key: CB-12611
 URL: https://issues.apache.org/jira/browse/CB-12611
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
Reporter: BeTop


Hello, How are you doing?
Today I got problem to play audio file of obb file.
It works 
But Media plugin is not working. so we need solution.
var url = 
"content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";
var my_media = new Media(url,
// success callback
function()
{ console.log("playAudio():Audio Success"); }
,
// error callback
function(err)
{ console.log("playAudio():Audio Error: ", err); }
);
// Play audio
my_media.play();
I got error code=1.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-5749) App getting crash some times when i use take photo using navigator.camera.getPicture in iOS 7.0

2016-09-23 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15516935#comment-15516935
 ] 

BeTop commented on CB-5749:
---

@jecsarmobile
thank you, it worked fine on last plugin.

> App getting crash some times when i use take photo using 
> navigator.camera.getPicture in iOS 7.0
> ---
>
> Key: CB-5749
> URL: https://issues.apache.org/jira/browse/CB-5749
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
> Environment: Cordova-2.4.0, Sencha touch 2.1.1, iOS-7.0, XCode-5.0
> iOS
>Reporter: kalyani puvvada
>  Labels: Triaged, iOS, memory-leak
>
> I am getting this crash in iOS 7 only. In iOS 6 it works fine. I used the 
> following code for take photo.
> {code:javascript}
> var destinationType=navigator.camera.DestinationType;
> navigator.camera.getPicture(this.caregiverPhotoSuccess, 
> this.caregiverPhotoFail, {
>  quality: 50,
>  targetWidth:300,
>  targetHeight:300,
>  destinationType: destinationType.DATA_URL,
>  sourceType:2,
>  correctOrientation: true 
> });
> {code}
> I am getting this error when app crash.
>   Received memory warning.
>   Plugin 'CDVCamera' has a pending operation, memory purge is delayed for 
> didReceiveMemoryWarning.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-5749) App getting crash some times when i use take photo using navigator.camera.getPicture in iOS 7.0

2016-09-23 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15516304#comment-15516304
 ] 

BeTop commented on CB-5749:
---

This is working on iOS 10?
I got app crash on iOS 10.

> App getting crash some times when i use take photo using 
> navigator.camera.getPicture in iOS 7.0
> ---
>
> Key: CB-5749
> URL: https://issues.apache.org/jira/browse/CB-5749
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
> Environment: Cordova-2.4.0, Sencha touch 2.1.1, iOS-7.0, XCode-5.0
> iOS
>Reporter: kalyani puvvada
>  Labels: Triaged, iOS, memory-leak
>
> I am getting this crash in iOS 7 only. In iOS 6 it works fine. I used the 
> following code for take photo.
> {code:javascript}
> var destinationType=navigator.camera.DestinationType;
> navigator.camera.getPicture(this.caregiverPhotoSuccess, 
> this.caregiverPhotoFail, {
>  quality: 50,
>  targetWidth:300,
>  targetHeight:300,
>  destinationType: destinationType.DATA_URL,
>  sourceType:2,
>  correctOrientation: true 
> });
> {code}
> I am getting this error when app crash.
>   Received memory warning.
>   Plugin 'CDVCamera' has a pending operation, memory purge is delayed for 
> didReceiveMemoryWarning.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-11099) Crashing when select dropdown in android Motorola Droid Turbo 2

2016-05-05 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-11099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15273363#comment-15273363
 ] 

BeTop commented on CB-11099:


See this stackoverflow link for issue.
This happened on only Motorola Driod phone.
http://stackoverflow.com/questions/36667121/adreno-error-crashes-android-cordova-app-on-select-dropdown

> Crashing when select dropdown in android Motorola Droid Turbo 2
> ---
>
> Key: CB-11099
> URL: https://issues.apache.org/jira/browse/CB-11099
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.0.0
>Reporter: BeTop
>Priority: Minor
>
> The  app crashes when choose select on an Motorola Droid Turbo 2, Android 
> Version 6.0.
> Here are the crucial logcat lines. They start with when I tap the dropdown.
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
> isActive: true
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
> hideSoftInputFromWindow
> 04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
> Content-Security-Policy meta tag found. Please add one when using the 
> cordova-plugin-whitelist plugin.", source: 
> file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash
> Everytime the app crashes there is one or more of these at the end of the log:
> W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
> failed: errno 16 Device or resource busy



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-11099) Crashing when select dropdown in android Motorola Droid Turbo 2

2016-04-18 Thread BeTop (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-11099?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

BeTop updated CB-11099:
---
Description: 
The  app crashes when choose select on an Motorola Droid Turbo 2, Android 
Version 6.0.

Here are the crucial logcat lines. They start with when I tap the dropdown.

04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
isActive: true
04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
hideSoftInputFromWindow
04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
Content-Security-Policy meta tag found. Please add one when using the 
cordova-plugin-whitelist plugin.", source: 
file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash


Everytime the app crashes there is one or more of these at the end of the log:

W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
failed: errno 16 Device or resource busy

  was:
My Android cordova-based app crashes on an Motorola Droid Turbo 2, Android 
Version 6.0.  I can crash it by making a selection in a completely barebones 
dropdown.

Here are the crucial logcat lines. They start with when I tap the dropdown.

04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
isActive: true
04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
hideSoftInputFromWindow
04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
Content-Security-Policy meta tag found. Please add one when using the 
cordova-plugin-whitelist plugin.", source: 
file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash


Everytime the app crashes there is one or more of these at the end of the log:

W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
failed: errno 16 Device or resource busy


> Crashing when select dropdown in android Motorola Droid Turbo 2
> ---
>
> Key: CB-11099
> URL: https://issues.apache.org/jira/browse/CB-11099
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.0.0
>Reporter: BeTop
>
> The  app crashes when choose select on an Motorola Droid Turbo 2, Android 
> Version 6.0.
> Here are the crucial logcat lines. They start with when I tap the dropdown.
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
> isActive: true
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
> hideSoftInputFromWindow
> 04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
> Content-Security-Policy meta tag found. Please add one when using the 
> cordova-plugin-whitelist plugin.", source: 
> file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash
> Everytime the app crashes there is one or more of these at the end of the log:
> W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
> failed: errno 16 Device or resource busy



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: 

[jira] [Updated] (CB-11099) Crashing when select dropdown in android Motorola Droid Turbo 2

2016-04-18 Thread BeTop (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-11099?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

BeTop updated CB-11099:
---
Summary: Crashing when select dropdown in android Motorola Droid Turbo 2  
(was: Crashing when select dropdown in android Motorola Droid Turbo 2,)

> Crashing when select dropdown in android Motorola Droid Turbo 2
> ---
>
> Key: CB-11099
> URL: https://issues.apache.org/jira/browse/CB-11099
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.0.0
>Reporter: BeTop
>
> My Android cordova-based app crashes on an Motorola Droid Turbo 2, Android 
> Version 6.0.  I can crash it by making a selection in a completely barebones 
> dropdown.
> Here are the crucial logcat lines. They start with when I tap the dropdown.
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
> isActive: true
> 04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
> hideSoftInputFromWindow
> 04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
> Content-Security-Policy meta tag found. Please add one when using the 
> cordova-plugin-whitelist plugin.", source: 
> file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
> code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: 
> errno 16 Device or resource busy
> 04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash
> Everytime the app crashes there is one or more of these at the end of the log:
> W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
> failed: errno 16 Device or resource busy



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-11099) Crashing when select dropdown in android Motorola Droid Turbo 2,

2016-04-18 Thread BeTop (JIRA)
BeTop created CB-11099:
--

 Summary: Crashing when select dropdown in android Motorola Droid 
Turbo 2,
 Key: CB-11099
 URL: https://issues.apache.org/jira/browse/CB-11099
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 6.0.0
Reporter: BeTop


My Android cordova-based app crashes on an Motorola Droid Turbo 2, Android 
Version 6.0.  I can crash it by making a selection in a completely barebones 
dropdown.

Here are the crucial logcat lines. They start with when I tap the dropdown.

04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:56] 
isActive: true
04-16 12:04:32.045: D/cr_Ime(13068): [InputMethodManagerWrapper.java:65] 
hideSoftInputFromWindow
04-16 12:04:37.181: I/chromium(13068): [INFO:CONSOLE(25)] "No 
Content-Security-Policy meta tag found. Please add one when using the 
cordova-plugin-whitelist plugin.", source: 
file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.204: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): : ioctl fd 38 
code 0x40180917 (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) failed: errno 
16 Device or resource busy
04-16 12:04:44.205: W/Adreno-GSL(13068): - beginning of crash


Everytime the app crashes there is one or more of these at the end of the log:

W/Adreno-GSL(13068): ... (IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID) 
failed: errno 16 Device or resource busy



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org