[jira] [Updated] (CB-12423) Requirements check failed for JDK 1.8 or greater

2017-02-03 Thread Sumama Waheed (JIRA)

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

Sumama Waheed updated CB-12423:
---
Description: 
After upgrading cordova to 6.5.0 and platform to cordova-android@6.1.2, the 
following error is thrown:

Error: Requirements check failed for JDK 1.8 or greater


On the cordova website, it says the requirement is 1.7 or greater.

https://cordova.apache.org/docs/en/latest/guide/platforms/android/


cordova: 6.5.0
android: 6.1.2

  was:
After upgrading cordova platform to cordova-android@6.1.2, the following error 
is thrown:

Error: Requirements check failed for JDK 1.8 or greater


On the cordova website, it says the requirement is 1.7 or greater.

https://cordova.apache.org/docs/en/latest/guide/platforms/android/


cordova: 6.5.0
android: 6.1.2


> Requirements check failed for JDK 1.8 or greater
> 
>
> Key: CB-12423
> URL: https://issues.apache.org/jira/browse/CB-12423
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.4.0
> Environment: Windows
>Reporter: Sumama Waheed
>
> After upgrading cordova to 6.5.0 and platform to cordova-android@6.1.2, the 
> following error is thrown:
> Error: Requirements check failed for JDK 1.8 or greater
> On the cordova website, it says the requirement is 1.7 or greater.
> https://cordova.apache.org/docs/en/latest/guide/platforms/android/
> cordova: 6.5.0
> android: 6.1.2



--
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-12423) Requirements check failed for JDK 1.8 or greater

2017-02-03 Thread Sumama Waheed (JIRA)
Sumama Waheed created CB-12423:
--

 Summary: Requirements check failed for JDK 1.8 or greater
 Key: CB-12423
 URL: https://issues.apache.org/jira/browse/CB-12423
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 6.4.0
 Environment: Windows
Reporter: Sumama Waheed


After upgrading cordova platform to cordova-android@6.1.2, the following error 
is thrown:

Error: Requirements check failed for JDK 1.8 or greater


On the cordova website, it says the requirement is 1.7 or greater.

https://cordova.apache.org/docs/en/latest/guide/platforms/android/


cordova: 6.5.0
android: 6.1.2



--
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-10483) Cordova platform Android@5.0.0 deletes app after rebuild

2016-02-02 Thread Sumama Waheed (JIRA)

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

Sumama Waheed commented on CB-10483:


But I have the latest version of Cordova 6.0.0 and I still have this problem on 
Android Marshmallow. Can you please let me know what resolution is from the 
other bug request.

> Cordova platform Android@5.0.0 deletes app after rebuild
> 
>
> Key: CB-10483
> URL: https://issues.apache.org/jira/browse/CB-10483
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Android
>Affects Versions: 5.0.0
>Reporter: Sumama Waheed
> Fix For: CB-10157
>
>
> I am using couchbase lite database in my cordova app. Alot of data is loaded 
> when the app is installed. On Android 4.1.1, whenever you rebuilt the app, 
> the app data was still intact. 
> However, after upgrading to Android 5.0.0 cordova platform, everytime you run 
> 'cordova run android' , the app is uninstalled and the app data is deleted 
> which is very inconvenient for debugging. 
> Can this be fixed?



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2016-01-08 Thread Sumama Waheed (JIRA)

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

Sumama Waheed commented on CB-10192:


sorry for the late response. I got off that project. I have tested it with the 
2.0.0 plugin and Android 5.0.0, and the problem is resolved. Thank you

> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
>Affects Versions: 1.1.0
> Environment: Google Nexus 6 Marshmallow
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
>Reporter: Sumama Waheed
>Assignee: Vladimir Kotikov
>  Labels: Android, contact.save, triaged
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
> This is how I am creating the contact:
> {code:javascript}
> var contact = navigator.contacts.create();
> contact.displayName = firstName + " " + lastName;
> contact.nickname = firstName; 
> var name = new ContactName();
> name.givenName = firstName;
> name.familyName = lastName;
> contact.name = name;
> var phoneNumbers = [];
> phoneNumbers.push(new ContactField('work', workPhone, false));
> phoneNumbers.push(new ContactField('mobile', mobilePhone, true)); // 
> preferred number 
> contact.phoneNumbers = phoneNumbers;
> var organizations = [];
> organizations.push(new ContactOrganization(true, "work", "Company", 
> "Company", "Supervisor"));
> contact.organizations = organizations;
> contact.save(onSuccess,onError);
> {code}



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-17 Thread Sumama Waheed (JIRA)

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

Sumama Waheed commented on CB-10192:


yes ill try the update...

The crash only happens when you search for the newly created contact. 

Example

1) Create contact : John Test

2) Open native contact app , opens fine

3) search for Jo* - crashes even if you type part of the name

4) If instead of searching, I scroll to J area and open John, I can open it 
fine and delete it

I have not added any extra fields, I even tried it without organization


> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
>Affects Versions: 1.1.0
> Environment: Google Nexus 6 Marshmallow
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
>Reporter: Sumama Waheed
>Assignee: Vladimir Kotikov
>  Labels: Android, contact.save, triaged
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
> This is how I am creating the contact:
> {code:javascript}
> var contact = navigator.contacts.create();
> contact.displayName = firstName + " " + lastName;
> contact.nickname = firstName; 
> var name = new ContactName();
> name.givenName = firstName;
> name.familyName = lastName;
> contact.name = name;
> var phoneNumbers = [];
> phoneNumbers.push(new ContactField('work', workPhone, false));
> phoneNumbers.push(new ContactField('mobile', mobilePhone, true)); // 
> preferred number 
> contact.phoneNumbers = phoneNumbers;
> var organizations = [];
> organizations.push(new ContactOrganization(true, "work", "Company", 
> "Company", "Supervisor"));
> contact.organizations = organizations;
> contact.save(onSuccess,onError);
> {code}



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-17 Thread Sumama Waheed (JIRA)

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

Sumama Waheed commented on CB-10192:


its shows 1.1.0 is the latest version

https://github.com/apache/cordova-plugin-contacts

> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
>Affects Versions: 1.1.0
> Environment: Google Nexus 6 Marshmallow
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
>Reporter: Sumama Waheed
>Assignee: Vladimir Kotikov
>  Labels: Android, contact.save, triaged
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
> This is how I am creating the contact:
> {code:javascript}
> var contact = navigator.contacts.create();
> contact.displayName = firstName + " " + lastName;
> contact.nickname = firstName; 
> var name = new ContactName();
> name.givenName = firstName;
> name.familyName = lastName;
> contact.name = name;
> var phoneNumbers = [];
> phoneNumbers.push(new ContactField('work', workPhone, false));
> phoneNumbers.push(new ContactField('mobile', mobilePhone, true)); // 
> preferred number 
> contact.phoneNumbers = phoneNumbers;
> var organizations = [];
> organizations.push(new ContactOrganization(true, "work", "Company", 
> "Company", "Supervisor"));
> contact.organizations = organizations;
> contact.save(onSuccess,onError);
> {code}



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-16 Thread Sumama Waheed (JIRA)

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

Sumama Waheed updated CB-10192:
---
Affects Version/s: 1.1.0
  Description: 
I successfully create a new contact with minimal fields like First Name and 
Given Name. 

The contact is created successfully and you can see it in the native Android 
contacts app if you scroll to the correct place.

However, if you search for the new contact by name, it crashes the Contacts app 
every time until you delete that contact !!.

Cordova : 5.4.0
Contacts Plugin: 1.1.0

This is how I am creating the contact:

var contact = navigator.contacts.create();
contact.displayName = firstName + " " + 
lastName;
contact.nickname = firstName; 
var name = new ContactName();
name.givenName = firstName;
name.familyName = lastName;
contact.name = name;

var phoneNumbers = [];
phoneNumbers.push(new ContactField('work', 
workPhone, false));
phoneNumbers.push(new ContactField('mobile', 
mobilePhone, true)); // preferred number 
contact.phoneNumbers = phoneNumbers;

var organizations = [];
organizations.push(new 
ContactOrganization(true, "work", "Company", "Company", "Supervisor"));
contact.organizations = organizations;

contact.save(onSuccess,onError);

  was:
I successfully create a new contact with minimal fields like First Name and 
Given Name. 

The contact is created successfully and you can see it in the native Android 
contacts app if you scroll to the correct place.

However, if you search for the new contact by name, it crashes the Contacts app 
every time until you delete that contact !!.




> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
>Affects Versions: 1.1.0
> Environment: Google Nexus 6 Marshmallow
>Reporter: Sumama Waheed
>  Labels: Android, contact.save
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
> This is how I am creating the contact:
>   var contact = navigator.contacts.create();
>   contact.displayName = firstName + " " + 
> lastName;
>   contact.nickname = firstName; 
>   var name = new ContactName();
>   name.givenName = firstName;
>   name.familyName = lastName;
>   contact.name = name;
>   var phoneNumbers = [];
>   phoneNumbers.push(new ContactField('work', 
> workPhone, false));
>   phoneNumbers.push(new ContactField('mobile', 
> mobilePhone, true)); // preferred number 
>   contact.phoneNumbers = phoneNumbers;
>   var organizations = [];
>   organizations.push(new 
> ContactOrganization(true, "work", "Company", "Company", "Supervisor"));
>   contact.organizations = organizations;
>   contact.save(onSuccess,onError);



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-16 Thread Sumama Waheed (JIRA)

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

Sumama Waheed commented on CB-10192:


Please check the edit. The error is not from the find(). Its caused when I 
create a contact using contact.save (code is in the description). After 
creating the contact in the app, the default google contacts app crashes until 
I delete that contact. The crash happens when I open the default contact app 
and search for the newly created contact. 

> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
>Affects Versions: 1.1.0
> Environment: Google Nexus 6 Marshmallow
>Reporter: Sumama Waheed
>  Labels: Android, contact.save
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.
> Cordova : 5.4.0
> Contacts Plugin: 1.1.0
> This is how I am creating the contact:
>   var contact = navigator.contacts.create();
>   contact.displayName = firstName + " " + 
> lastName;
>   contact.nickname = firstName; 
>   var name = new ContactName();
>   name.givenName = firstName;
>   name.familyName = lastName;
>   contact.name = name;
>   var phoneNumbers = [];
>   phoneNumbers.push(new ContactField('work', 
> workPhone, false));
>   phoneNumbers.push(new ContactField('mobile', 
> mobilePhone, true)); // preferred number 
>   contact.phoneNumbers = phoneNumbers;
>   var organizations = [];
>   organizations.push(new 
> ContactOrganization(true, "work", "Company", "Company", "Supervisor"));
>   contact.organizations = organizations;
>   contact.save(onSuccess,onError);



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-11 Thread Sumama Waheed (JIRA)

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

Sumama Waheed updated CB-10192:
---
Description: 
I successfully create a new contact with minimal fields like First Name and 
Given Name. 

The contact is created successfully and you can see it in the native Android 
contacts app if you scroll to the correct place.

However, if you search for the new contact by name, it crashes the Contacts app 
every time until you delete that contact !!.



  was:
I successfully create a new contact with minimal fields like First Name and 
Given Name. 

The contact is created successfully and you can see it in the native Android 
contacts app if you scroll to the correct place.

However, if you search for the new contact by name, it crashes the Contacts app 
every time until to delete that contact !!.




> Native Android Contacts app crashed after creating new contact in Cordova app
> -
>
> Key: CB-10192
> URL: https://issues.apache.org/jira/browse/CB-10192
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Contacts
> Environment: Google Nexus 6 Marshmallow
>Reporter: Sumama Waheed
>  Labels: contact.save
>
> I successfully create a new contact with minimal fields like First Name and 
> Given Name. 
> The contact is created successfully and you can see it in the native Android 
> contacts app if you scroll to the correct place.
> However, if you search for the new contact by name, it crashes the Contacts 
> app every time until you delete that contact !!.



--
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-10192) Native Android Contacts app crashed after creating new contact in Cordova app

2015-12-11 Thread Sumama Waheed (JIRA)
Sumama Waheed created CB-10192:
--

 Summary: Native Android Contacts app crashed after creating new 
contact in Cordova app
 Key: CB-10192
 URL: https://issues.apache.org/jira/browse/CB-10192
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Contacts
 Environment: Google Nexus 6 Marshmallow
Reporter: Sumama Waheed


I successfully create a new contact with minimal fields like First Name and 
Given Name. 

The contact is created successfully and you can see it in the native Android 
contacts app if you scroll to the correct place.

However, if you search for the new contact by name, it crashes the Contacts app 
every time until to delete that contact !!.





--
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