Re: [android-developers] Help wanted for Android app development

2016-02-10 Thread sardar khan
http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you
look at this

On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <
i...@mediaquest.nl> wrote:

> Hi Sardar,
>
>
>
> I have this in my manifest.xml file:
>
>
>
> <*receiver **android**:name=**".MyReceiver"*>
> <*intent-filter*>
> <*action **android**:name=**"android.net.conn.CONNECTIVITY_CHANGE"
> */>
> 
> 
>
>
>
> Where to unregister it and how?
>
>
>
> Marcel
>
>
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 06:19
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> yes the first issue is due to the broadcast receiver to check the
> internet.you can use connectivityManager to check the internet state.or you
> can unregister the broadcast properly see the offical documentation about
> the broadcast receiver.
>
>
>
> On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Damien,
>
>
>
> Thanks for your reply. I am in contact with 2 other men offering help so I
> do not know what to do now.
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
> *Sent:* dinsdag 9 februari 2016 21:59
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> I can help you,
>
> Send me the code and a description of what it is doing and what you need
> it to do and lets see if I can fix it for you.
>
>
>
> Damien
>
> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>
> Hi,
>
>
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
>
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
>
>
>
> Regards,
>
>
>
> Marcel
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
> <https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl
> <https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40me

Re: [android-developers] Help wanted for Android app development

2016-02-10 Thread sardar khan
this will tell you how to unregister Recevier Android

On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com>
wrote:

>
> http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you
> look at this
>
> On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
>> Hi Sardar,
>>
>>
>>
>> I have this in my manifest.xml file:
>>
>>
>>
>> <*receiver **android**:name=**".MyReceiver"*>
>> <*intent-filter*>
>> <*action **android**:name=**"android.net.conn.CONNECTIVITY_CHANGE"
>> */>
>> 
>> 
>>
>>
>>
>> Where to unregister it and how?
>>
>>
>>
>> Marcel
>>
>>
>>
>>
>>
>> *From:* android-developers@googlegroups.com [mailto:
>> android-developers@googlegroups.com] *On Behalf Of *sardar khan
>> *Sent:* woensdag 10 februari 2016 06:19
>> *To:* android-developers@googlegroups.com
>> *Subject:* Re: [android-developers] Help wanted for Android app
>> development
>>
>>
>>
>> yes the first issue is due to the broadcast receiver to check the
>> internet.you can use connectivityManager to check the internet state.or you
>> can unregister the broadcast properly see the offical documentation about
>> the broadcast receiver.
>>
>>
>>
>> On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
>> i...@mediaquest.nl> wrote:
>>
>> Damien,
>>
>>
>>
>> Thanks for your reply. I am in contact with 2 other men offering help so
>> I do not know what to do now.
>>
>>
>>
>> Marcel
>>
>>
>>
>> *From:* android-developers@googlegroups.com [mailto:
>> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
>> *Sent:* dinsdag 9 februari 2016 21:59
>> *To:* android-developers@googlegroups.com
>> *Subject:* Re: [android-developers] Help wanted for Android app
>> development
>>
>>
>>
>> I can help you,
>>
>> Send me the code and a description of what it is doing and what you need
>> it to do and lets see if I can fix it for you.
>>
>>
>>
>> Damien
>>
>> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>>
>> Hi,
>>
>>
>>
>> I am working on the development of an Android-app. I ran into some
>> strange errors. I really need an expert to help me to solve this.
>>
>>
>>
>> Does anyone know someone who can assist me. i would like to send the
>> whole project and an experienced developer to solve my issues.
>>
>>
>>
>> Regards,
>>
>>
>>
>> Marcel
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to android-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
>> <https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Android Developers" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> android-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to android-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>&g

Re: [android-developers] Help wanted for Android app development

2016-02-10 Thread sardar khan
yes its due to the images i will be solved if you reduce your image size

On Wed, Feb 10, 2016 at 4:00 PM, MediaQuest | N.M. Molenaar <
i...@mediaquest.nl> wrote:

> Hi Sardar,
>
>
>
> The problem is solved now, thanks for your help!
>
>
>
> I do not unregister it by the way because it should stay active through
> all livecycles of my app.
>
>
>
> I still have problems with outOfMemory errors on an old Android phone but
> I think it is due to my images
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 11:42
>
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> you should unregister the receiver in on stop or in on destroy method
>
>
>
> On Wed, Feb 10, 2016 at 2:49 PM, sardar khan <sardar.khan...@gmail.com>
> wrote:
>
> this will tell you how to unregister Recevier Android
>
>
>
> On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com>
> wrote:
>
>
> http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you
>
> look at this
>
>
>
> On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Hi Sardar,
>
>
>
> I have this in my manifest.xml file:
>
>
>
> <*receiver **android**:name=**".MyReceiver"*>
> <*intent-filter*>
> <*action **android**:name=**"android.net.conn.CONNECTIVITY_CHANGE"
> */>
> 
> 
>
>
>
> Where to unregister it and how?
>
>
>
> Marcel
>
>
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 06:19
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> yes the first issue is due to the broadcast receiver to check the
> internet.you can use connectivityManager to check the internet state.or you
> can unregister the broadcast properly see the offical documentation about
> the broadcast receiver.
>
>
>
> On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Damien,
>
>
>
> Thanks for your reply. I am in contact with 2 other men offering help so I
> do not know what to do now.
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
> *Sent:* dinsdag 9 februari 2016 21:59
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> I can help you,
>
> Send me the code and a description of what it is doing and what you need
> it to do and lets see if I can fix it for you.
>
>
>
> Damien
>
> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>
> Hi,
>
>
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
>
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
>
>
>
> Regards,
>
>
>
> Marcel
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
> <https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubsc

Re: [android-developers] Help wanted for Android app development

2016-02-10 Thread sardar khan
Ok.no problem i love to help you in future as well thanks

On Wed, Feb 10, 2016 at 4:18 PM, MediaQuest | N.M. Molenaar <
i...@mediaquest.nl> wrote:

> Thanks for your help Sardar.
>
>
>
> The problem with the intent leak of my broadcastreceiver has gone. I have
> an Activity that holds a logout button in my app which makes intent to
> StartActivity (which is the launcher Activity as well):
>
>
>
> Intent i = *new *Intent(parent.getContext(), StartActivity.*class*);
> i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
> i.putExtra(*"EXIT"*, *true*);
> *//i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);*
>
>
>
> I think I has something to do with the flags I have put because now I
> played a bit with it (commented out  *FLAG_ACTIVITY_NEW_TASK *and now it
> seems to be ok
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 12:05
>
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> yes its due to the images i will be solved if you reduce your image size
>
>
>
> On Wed, Feb 10, 2016 at 4:00 PM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Hi Sardar,
>
>
>
> The problem is solved now, thanks for your help!
>
>
>
> I do not unregister it by the way because it should stay active through
> all livecycles of my app.
>
>
>
> I still have problems with outOfMemory errors on an old Android phone but
> I think it is due to my images
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 11:42
>
>
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> you should unregister the receiver in on stop or in on destroy method
>
>
>
> On Wed, Feb 10, 2016 at 2:49 PM, sardar khan <sardar.khan...@gmail.com>
> wrote:
>
> this will tell you how to unregister Recevier Android
>
>
>
> On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com>
> wrote:
>
>
> http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you
>
> look at this
>
>
>
> On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Hi Sardar,
>
>
>
> I have this in my manifest.xml file:
>
>
>
> <*receiver **android**:name=**".MyReceiver"*>
> <*intent-filter*>
>     <*action **android**:name=**"android.net.conn.CONNECTIVITY_CHANGE"
> */>
> 
> 
>
>
>
> Where to unregister it and how?
>
>
>
> Marcel
>
>
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *sardar khan
> *Sent:* woensdag 10 februari 2016 06:19
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> yes the first issue is due to the broadcast receiver to check the
> internet.you can use connectivityManager to check the internet state.or you
> can unregister the broadcast properly see the offical documentation about
> the broadcast receiver.
>
>
>
> On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
> i...@mediaquest.nl> wrote:
>
> Damien,
>
>
>
> Thanks for your reply. I am in contact with 2 other men offering help so I
> do not know what to do now.
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
> *Sent:* dinsdag 9 februari 2016 21:59
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> I can help you,
>
> Send me the code and a description of what it is doing and what you need
> it to do and lets see if I can fix it for you.
>
>
>
> Damien
>
> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>
> Hi,
>
>
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
>
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
&

Re: [android-developers] Help wanted for Android app development

2016-02-10 Thread sardar khan
you should unregister the receiver in on stop or in on destroy method

On Wed, Feb 10, 2016 at 2:49 PM, sardar khan <sardar.khan...@gmail.com>
wrote:

> this will tell you how to unregister Recevier Android
>
> On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com>
> wrote:
>
>>
>> http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you
>> look at this
>>
>> On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <
>> i...@mediaquest.nl> wrote:
>>
>>> Hi Sardar,
>>>
>>>
>>>
>>> I have this in my manifest.xml file:
>>>
>>>
>>>
>>> <*receiver **android**:name=**".MyReceiver"*>
>>> <*intent-filter*>
>>> <*action **android**:name=**"android.net.conn.CONNECTIVITY_CHANGE"
>>> */>
>>> 
>>> 
>>>
>>>
>>>
>>> Where to unregister it and how?
>>>
>>>
>>>
>>> Marcel
>>>
>>>
>>>
>>>
>>>
>>> *From:* android-developers@googlegroups.com [mailto:
>>> android-developers@googlegroups.com] *On Behalf Of *sardar khan
>>> *Sent:* woensdag 10 februari 2016 06:19
>>> *To:* android-developers@googlegroups.com
>>> *Subject:* Re: [android-developers] Help wanted for Android app
>>> development
>>>
>>>
>>>
>>> yes the first issue is due to the broadcast receiver to check the
>>> internet.you can use connectivityManager to check the internet state.or you
>>> can unregister the broadcast properly see the offical documentation about
>>> the broadcast receiver.
>>>
>>>
>>>
>>> On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
>>> i...@mediaquest.nl> wrote:
>>>
>>> Damien,
>>>
>>>
>>>
>>> Thanks for your reply. I am in contact with 2 other men offering help so
>>> I do not know what to do now.
>>>
>>>
>>>
>>> Marcel
>>>
>>>
>>>
>>> *From:* android-developers@googlegroups.com [mailto:
>>> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
>>> *Sent:* dinsdag 9 februari 2016 21:59
>>> *To:* android-developers@googlegroups.com
>>> *Subject:* Re: [android-developers] Help wanted for Android app
>>> development
>>>
>>>
>>>
>>> I can help you,
>>>
>>> Send me the code and a description of what it is doing and what you need
>>> it to do and lets see if I can fix it for you.
>>>
>>>
>>>
>>> Damien
>>>
>>> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>>>
>>> Hi,
>>>
>>>
>>>
>>> I am working on the development of an Android-app. I ran into some
>>> strange errors. I really need an expert to help me to solve this.
>>>
>>>
>>>
>>> Does anyone know someone who can assist me. i would like to send the
>>> whole project and an experienced developer to solve my issues.
>>>
>>>
>>>
>>> Regards,
>>>
>>>
>>>
>>> Marcel
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To post to this group, send email to android-developers@googlegroups.com
>>> .
>>> Visit this group at https://groups.google.com/group/android-developers.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
>>> <https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "Android Developers" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe
>>> .
>>> To unsubscribe from this group and all 

RE: [android-developers] Help wanted for Android app development

2016-02-10 Thread MediaQuest | N.M. Molenaar
Hi Sardar,

 

The problem is solved now, thanks for your help!

 

I do not unregister it by the way because it should stay active through all 
livecycles of my app.

 

I still have problems with outOfMemory errors on an old Android phone but I 
think it is due to my images 

 

Marcel

 

From: android-developers@googlegroups.com 
[mailto:android-developers@googlegroups.com] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 11:42
To: android-developers@googlegroups.com
Subject: Re: [android-developers] Help wanted for Android app development

 

you should unregister the receiver in on stop or in on destroy method

 

On Wed, Feb 10, 2016 at 2:49 PM, sardar khan <sardar.khan...@gmail.com 
<mailto:sardar.khan...@gmail.com> > wrote:

this will tell you how to unregister Recevier Android

 

On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com 
<mailto:sardar.khan...@gmail.com> > wrote:

http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you

look at this 

 

On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi Sardar,

 

I have this in my manifest.xml file:

 







 

Where to unregister it and how?

 

Marcel

 

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 06:19
To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

yes the first issue is due to the broadcast receiver to check the internet.you 
can use connectivityManager to check the internet state.or you can unregister 
the broadcast properly see the offical documentation about the broadcast 
receiver.

 

On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Damien,

 

Thanks for your reply. I am in contact with 2 other men offering help so I do 
not know what to do now. 

 

Marcel

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of Damien Cooke
Sent: dinsdag 9 februari 2016 21:59
To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

I can help you,

Send me the code and a description of what it is doing and what you need it to 
do and lets see if I can fix it for you.

 

Damien

On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi,

 

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

 

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

 

Regards,

 

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
 
<https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Android Developers" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
 
<https://groups.google.com/d/msgid

RE: [android-developers] Help wanted for Android app development

2016-02-10 Thread MediaQuest | N.M. Molenaar
Thanks for your help Sardar.

 

The problem with the intent leak of my broadcastreceiver has gone. I have an 
Activity that holds a logout button in my app which makes intent to 
StartActivity (which is the launcher Activity as well):

 

Intent i = new Intent(parent.getContext(), StartActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
i.putExtra("EXIT", true);
//i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

 

I think I has something to do with the flags I have put because now I played a 
bit with it (commented out  FLAG_ACTIVITY_NEW_TASK and now it seems to be ok

 

Marcel

 

From: android-developers@googlegroups.com 
[mailto:android-developers@googlegroups.com] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 12:05
To: android-developers@googlegroups.com
Subject: Re: [android-developers] Help wanted for Android app development

 

yes its due to the images i will be solved if you reduce your image size 

 

On Wed, Feb 10, 2016 at 4:00 PM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi Sardar,

 

The problem is solved now, thanks for your help!

 

I do not unregister it by the way because it should stay active through all 
livecycles of my app.

 

I still have problems with outOfMemory errors on an old Android phone but I 
think it is due to my images 

 

Marcel

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 11:42


To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

you should unregister the receiver in on stop or in on destroy method

 

On Wed, Feb 10, 2016 at 2:49 PM, sardar khan <sardar.khan...@gmail.com 
<mailto:sardar.khan...@gmail.com> > wrote:

this will tell you how to unregister Recevier Android

 

On Wed, Feb 10, 2016 at 2:48 PM, sardar khan <sardar.khan...@gmail.com 
<mailto:sardar.khan...@gmail.com> > wrote:

http://stackoverflow.com/questions/14357566/activity-has-leaked-intentreceiver-that-was-originally-registered-here-are-you

look at this 

 

On Wed, Feb 10, 2016 at 1:30 PM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi Sardar,

 

I have this in my manifest.xml file:

 







 

Where to unregister it and how?

 

Marcel

 

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 06:19
To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

yes the first issue is due to the broadcast receiver to check the internet.you 
can use connectivityManager to check the internet state.or you can unregister 
the broadcast properly see the offical documentation about the broadcast 
receiver.

 

On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Damien,

 

Thanks for your reply. I am in contact with 2 other men offering help so I do 
not know what to do now. 

 

Marcel

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of Damien Cooke
Sent: dinsdag 9 februari 2016 21:59
To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

I can help you,

Send me the code and a description of what it is doing and what you need it to 
do and lets see if I can fix it for you.

 

Damien

On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi,

 

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

 

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

 

Regards,

 

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at ht

RE: [android-developers] Help wanted for Android app development

2016-02-10 Thread MediaQuest | N.M. Molenaar
Hi Sardar,

 

I have this in my manifest.xml file:

 







 

Where to unregister it and how?

 

Marcel

 

 

From: android-developers@googlegroups.com 
[mailto:android-developers@googlegroups.com] On Behalf Of sardar khan
Sent: woensdag 10 februari 2016 06:19
To: android-developers@googlegroups.com
Subject: Re: [android-developers] Help wanted for Android app development

 

yes the first issue is due to the broadcast receiver to check the internet.you 
can use connectivityManager to check the internet state.or you can unregister 
the broadcast properly see the offical documentation about the broadcast 
receiver.

 

On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Damien,

 

Thanks for your reply. I am in contact with 2 other men offering help so I do 
not know what to do now. 

 

Marcel

 

From: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com>  
[mailto:android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> ] On Behalf Of Damien Cooke
Sent: dinsdag 9 februari 2016 21:59
To: android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> 
Subject: Re: [android-developers] Help wanted for Android app development

 

I can help you,

Send me the code and a description of what it is doing and what you need it to 
do and lets see if I can fix it for you.

 

Damien

On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi,

 

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

 

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

 

Regards,

 

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
 
<https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Android Developers" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
 
<https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl
 
<https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl?utm_medium=email_source=footer>
 .


For more options, visit https://groups.google.com/d/optout.

 

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Android Developers" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 

[android-developers] Help wanted for Android app development

2016-02-09 Thread Marcel Molenaar
Hi,

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

Regards,

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Help wanted for Android app development

2016-02-09 Thread Damien Cooke
I can help you,
Send me the code and a description of what it is doing and what you need it
to do and lets see if I can fix it for you.

Damien

On Wed, 10 Feb 2016 00:05 Marcel Molenaar  wrote:

> Hi,
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
>
> Regards,
>
> Marcel
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: [android-developers] Help wanted for Android app development

2016-02-09 Thread MediaQuest | N.M. Molenaar
Damien,

 

Thanks for your reply. I am in contact with 2 other men offering help so I do 
not know what to do now. 

 

Marcel

 

From: android-developers@googlegroups.com 
[mailto:android-developers@googlegroups.com] On Behalf Of Damien Cooke
Sent: dinsdag 9 februari 2016 21:59
To: android-developers@googlegroups.com
Subject: Re: [android-developers] Help wanted for Android app development

 

I can help you,

Send me the code and a description of what it is doing and what you need it to 
do and lets see if I can fix it for you.

 

Damien

On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi,

 

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

 

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

 

Regards,

 

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
 
<https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Android Developers" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
 
<https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl.
For more options, visit https://groups.google.com/d/optout.


RE: [android-developers] Help wanted for Android app development

2016-02-09 Thread MediaQuest | N.M. Molenaar
Hello,

 

Thanks for your response.

 

My app is an app for an insurance company. It consists of several activities. 
Data is coming from server in the form of a json request. There are several 
listviews holding listviewitems which consist of text and an icon. Most images 
are loaded using Picasso library. I did not make scaled  versions of images for 
each drawable, instead i made big version of image (for example icons images 
for listview items are 500 x 500 px).

 

I have 2 situations in which my app crashes:

 

1.Activity uk.co.. has leaked IntentReceiver 
com.immersion.android.haptics.HapticFeedbackManager$HapticFeedbackBroadcastReceiver@41e4bac0
 that was originally registered here. Are you missing a call to 
unregisterReceiver()?

2.Out of Memory issues, i think due to my images but not sureā€¦ most 
of my big images are loaded through Picasso library

I am developing in Android Studio.

 

For issue 1 I googled a lot and at the end I found it is a bug in Android 4.2.2 
on Samsung devices but I need to solve it however because otherwise people 
using Samsung Galaxy Tab2 can not use the app. Meanwhile my app uses 
broadcastreceiver to check if internet connection is ok so i thought maybe it 
cloud be that but i do not think so.

 

I tried to track down issue 2 by investigating the heap-stack but could not 
figure it out. I analyzed my heap dump with MAT.

 

If you can help me please discuss further details ok?

 

Regards,

 

Marcel 

 

From: android-developers@googlegroups.com 
[mailto:android-developers@googlegroups.com] On Behalf Of sardar khan
Sent: dinsdag 9 februari 2016 19:07
To: android-developers@googlegroups.com
Subject: Re: [android-developers] Help wanted for Android app development

 

yes i can do it for you kindly inform me about your issue..??

 

On Tue, Feb 9, 2016 at 6:31 PM, Marcel Molenaar <i...@mediaquest.nl 
<mailto:i...@mediaquest.nl> > wrote:

Hi,

 

I am working on the development of an Android-app. I ran into some strange 
errors. I really need an expert to help me to solve this.

 

Does anyone know someone who can assist me. i would like to send the whole 
project and an experienced developer to solve my issues.

 

Regards,

 

Marcel

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
 
<https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

 

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Android Developers" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
android-developers+unsubscr...@googlegroups.com 
<mailto:android-developers+unsubscr...@googlegroups.com> .
To post to this group, send email to android-developers@googlegroups.com 
<mailto:android-developers@googlegroups.com> .
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXARHCnYviF87nB8vK3k5omtpvyerL-kojPaR1sCxQz%2BjNA%40mail.gmail.com
 
<https://groups.google.com/d/msgid/android-developers/CABHzXARHCnYviF87nB8vK3k5omtpvyerL-kojPaR1sCxQz%2BjNA%40mail.gmail.com?utm_medium=email_source=footer>
 .
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/01d1637b%2459e56c70%240db04550%24%40mediaquest.nl.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Help wanted for Android app development

2016-02-09 Thread sardar khan
yes i can do it for you kindly inform me about your issue..??

On Tue, Feb 9, 2016 at 6:31 PM, Marcel Molenaar  wrote:

> Hi,
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
>
> Regards,
>
> Marcel
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXARHCnYviF87nB8vK3k5omtpvyerL-kojPaR1sCxQz%2BjNA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Help wanted for Android app development

2016-02-09 Thread sardar khan
yes the first issue is due to the broadcast receiver to check the
internet.you can use connectivityManager to check the internet state.or you
can unregister the broadcast properly see the offical documentation about
the broadcast receiver.

On Wed, Feb 10, 2016 at 2:11 AM, MediaQuest | N.M. Molenaar <
i...@mediaquest.nl> wrote:

> Damien,
>
>
>
> Thanks for your reply. I am in contact with 2 other men offering help so I
> do not know what to do now.
>
>
>
> Marcel
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-developers@googlegroups.com] *On Behalf Of *Damien Cooke
> *Sent:* dinsdag 9 februari 2016 21:59
> *To:* android-developers@googlegroups.com
> *Subject:* Re: [android-developers] Help wanted for Android app
> development
>
>
>
> I can help you,
>
> Send me the code and a description of what it is doing and what you need
> it to do and lets see if I can fix it for you.
>
>
>
> Damien
>
> On Wed, 10 Feb 2016 00:05 Marcel Molenaar <i...@mediaquest.nl> wrote:
>
> Hi,
>
>
>
> I am working on the development of an Android-app. I ran into some strange
> errors. I really need an expert to help me to solve this.
>
>
>
> Does anyone know someone who can assist me. i would like to send the whole
> project and an experienced developer to solve my issues.
>
>
>
> Regards,
>
>
>
> Marcel
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com
> <https://groups.google.com/d/msgid/android-developers/3c4b67ba-aa3c-4550-975c-5aa51b3ffbd4%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/t2ubR8P_ZS4/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CAFE05BYW4ZMEtUWMA-5uDws05hm1qTWvCx4g-sxqM1Hsx%2BbQcA%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl
> <https://groups.google.com/d/msgid/android-developers/000901d1637e%24691c0c50%243b5424f0%24%40mediaquest.nl?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXATigZd6ZdZG2w-geA%3DSvE_iyHrC0mU9xZcGtt7jeYx83A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.