Tecnologia do Blogger.
RSS

[androidbrasil-dev] Re: Retrofit 2 - @GET e @Header

A mensagem é que está dando: 
{
    "error": "Token not provided"
}

Em segunda-feira, 30 de janeiro de 2017 09:46:38 UTC-2, pedrofsn escreveu:
E a mensagem de erro?

Em domingo, 29 de janeiro de 2017 16:12:39 UTC-2, Rodrigo Amora escreveu:
Olá pessoal, bom dia.

Estou com um problema em um app pessoal com o Retrofit 2, estou tendo um problema em chamar um endpoint via @GET e passando um parâmetro via @Header.
A interface de callback:
@GET("api/igrejas/")
public Call<IgrejaModelCallback> listarTodasIgrejas(@Header("token") RequestBody token);


O trecho que a API:
RequestBody requestBody = RequestBody.create(MediaType.parse("text/plain"), token);
Call<IgrejaModelCallback> call = service.listarTodasIgrejas(requestBody);

call.enqueue(new Callback<IgrejaModelCallback>() {
@Override
public void onResponse(Call<IgrejaModelCallback> call, Response<IgrejaModelCallback> response) {

}

@Override
public void onFailure(Call<IgrejaModelCallback> call, Throwable t) {

}
});

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Fwd: [ASR:7995] Novo doc sobre Gerry Lopez

--
You received this message because you are subscribed to the Google Groups "Minasurf" group.
To unsubscribe from this group and stop receiving emails from it, send an email to minasurf+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] EXCELLENT HOT LIST: ||JAVA || ORACLE CC&B || FULL STACK || JAVA J2EE/UI || DevOps || ORACLE CC&B TESTER ||


Hi Partner!!!

 

I am Madasu from Riyantech Software Solutions Inc , Hope you are doing great today.......

 

Please find the updated HOT LIST of my consultants.........

Below is the list of Available Candidates for your requirements. Let me know if you have any requirements that match my list of available candidates and their criteria given below.

You can Contact me: 302-650-1666 or madasu@riyantech.com

 

 

Candidate

Skills

Visa

Location

Relocation

Nitesh

Java

H1-B

MO

Open

Srivasthava

Java J2EE

H1-B

MD

Open

Jeswanth

Qlikview

H1-B

TX

Open

Snehitha

Devops /Java

H1-B

NC

Open

KK

Oracle CC&B

H1-B

TX

Open

Duranath

Java/J2ee-UI

H1-B

NJ

Open

Mahender

Java/J2ee-UI

H1-B

CA

Open

        mm

Oracle CC&B Tester

H1-B

       AZ

Open

 

I would highly appreciate if you can add me (madasu@riyantech.com) in your daily requirement mailing list and keep me posted with your daily requirements. 

 

 

Thanks & Regards,

 

Madasu 

Riyantech Software Solutions Inc.

Board:  (302)-650-1666 | Mobile: (302)-357-9938 | Fax: 972-521-8020 | madasu@riyantech.com

Corporate Office: 38731 Fremont Blvd Fremont, CA -94536

Information Technology, Engineering Services, Outsourcing and Innovationwww.riyantech.com

 

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Re: ListView Custom

Bom dia.

O que tenho é um CustomAdapter e o meu Listview vai em cada linha um filas_item.xml (no qual possui um Radio). Quero que ao clicar em qualquer lugar da linha o radio marque/desmarque.



2017-01-27 21:40 GMT-02:00 Arthur Ruppenthal <arthur.ruppenthal@gmail.com>:
Talvez mesmo eu não tendo me expressado bem, parece que tu pegou a ideia Luciano. Muito grato...

Olhei o código e pode ajudar sim.

On Jan 27, 2017 10:49, "Luciano Pimenta" <lucianoalmeidapimenta@gmail.com> wrote:
Veja se isso lhe ajuda.
Qualquer coisa, seja um pouco mais especifico.

Att

Em quinta-feira, 26 de janeiro de 2017 11:34:33 UTC-2, Arthur escreveu:
Bom dia.

Alguém já conseguiu fazer com que ao clicar em qualquer linhas da listview o radio seja marcado/desmarcado? Tenho que implementar Onclicklistener em todos os outros componentes e chamar o do radioButton?

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Re: Retrofit 2 - @GET e @Header

E a mensagem de erro?

Em domingo, 29 de janeiro de 2017 16:12:39 UTC-2, Rodrigo Amora escreveu:
Olá pessoal, bom dia.

Estou com um problema em um app pessoal com o Retrofit 2, estou tendo um problema em chamar um endpoint via @GET e passando um parâmetro via @Header.
A interface de callback:
@GET("api/igrejas/")
public Call<IgrejaModelCallback> listarTodasIgrejas(@Header("token") RequestBody token);


O trecho que a API:
RequestBody requestBody = RequestBody.create(MediaType.parse("text/plain"), token);
Call<IgrejaModelCallback> call = service.listarTodasIgrejas(requestBody);

call.enqueue(new Callback<IgrejaModelCallback>() {
@Override
public void onResponse(Call<IgrejaModelCallback> call, Response<IgrejaModelCallback> response) {

}

@Override
public void onFailure(Call<IgrejaModelCallback> call, Throwable t) {

}
});

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Retrofit 2 - @GET e @Header

Olá pessoal, bom dia.

Estou com um problema em um app pessoal com o Retrofit 2, estou tendo um problema em chamar um endpoint via @GET e passando um parâmetro via @Header.
A interface de callback:
@GET("api/igrejas/")
public Call<IgrejaModelCallback> listarTodasIgrejas(@Header("token") RequestBody token);


O trecho que a API:
RequestBody requestBody = RequestBody.create(MediaType.parse("text/plain"), token);
Call<IgrejaModelCallback> call = service.listarTodasIgrejas(requestBody);

call.enqueue(new Callback<IgrejaModelCallback>() {
@Override
public void onResponse(Call<IgrejaModelCallback> call, Response<IgrejaModelCallback> response) {

}

@Override
public void onFailure(Call<IgrejaModelCallback> call, Throwable t) {

}
});

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] App de notificação - Identificar e-mail

Parece que não é possível. E pesquisando não encontrei nada que disse o contrário.

Em 28 de jan de 2017 7:50 AM, "Felipe Aron" <felipearon@gmail.com> escreveu:
Fala aí galera beleza?

Existe a possibilidade de identificar quando um determinado e-mail chega para mim? E assim que chegar soltar uma notificação na tela?

Eu quero identificar o e-mail pelo remetente e o início do título.

Alguém já faz algo parecido ou tenha alguma dica?

Desde já agradeço.

--
Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Re: Classe consumir Webservice PHP

Utilize retrofit + gson converter + okhttp que é só sucesso, https://futurestud.io/tutorials/retrofit-getting-started-and-android-client.

Roda em vários projetos que desenvolvi:
  • https://play.google.com/store/apps/details?id=br.com.estudiocriar.car4sale
  • https://play.google.com/store/apps/details?id=br.com.estudiocriar.heey
  • https://play.google.com/store/apps/details?id=br.com.estudiocriar.clickvale
  • https://play.google.com/store/apps/details?id=br.app.pesquisa
  • https://play.google.com/store/apps/details?id=br.com.provi.corretor
  • https://play.google.com/store/apps/details?id=br.agenda.digital
  • https://play.google.com/store/apps/details?id=br.agenda.digital.wrj
  • https://play.google.com/store/apps/details?id=br.agenda.digital.casinhafeliz

Em sexta-feira, 27 de janeiro de 2017 10:17:10 UTC-2, Arthur escreveu:
Pessoal, bom dia!

O que devo usar atualmente para escrever uma classe que consumirá meu WS Gson?

Em um projeto antigo usei org.apache.http.*. Porém, isso está me trazendo problemas agora.

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] App de notificação - Identificar e-mail

Fala aí galera beleza?

Existe a possibilidade de identificar quando um determinado e-mail chega para mim? E assim que chegar soltar uma notificação na tela?

Eu quero identificar o e-mail pelo remetente e o início do título.

Alguém já faz algo parecido ou tenha alguma dica?

Desde já agradeço.

--
Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Re: ListView Custom

Talvez mesmo eu não tendo me expressado bem, parece que tu pegou a ideia Luciano. Muito grato...

Olhei o código e pode ajudar sim.

On Jan 27, 2017 10:49, "Luciano Pimenta" <lucianoalmeidapimenta@gmail.com> wrote:
Veja se isso lhe ajuda.
Qualquer coisa, seja um pouco mais especifico.

Att

Em quinta-feira, 26 de janeiro de 2017 11:34:33 UTC-2, Arthur escreveu:
Bom dia.

Alguém já conseguiu fazer com que ao clicar em qualquer linhas da listview o radio seja marcado/desmarcado? Tenho que implementar Onclicklistener em todos os outros componentes e chamar o do radioButton?

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Teclado customizado

Boa tarde amigos,

Preciso desenvolver um teclado customizado e gostaria de saber se alguém já fez isso e pode me dar uma direção.

Pensem nesse exemplo da imagem onde tenho imagens e texto, também poderia ser uma lista de informações..



​Vamos supor que eu queira fazer uma imagem de splash antes de exibir esse teclado custom, conseguiria fazer também ?

Obrigado​

Atenciosamente

Gorio

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Re: ListView Custom

Veja se isso lhe ajuda.
Qualquer coisa, seja um pouco mais especifico.
http://rudisss.blogspot.com.br/2012/10/listview-with-radio-buttons-and.html

Att

Em quinta-feira, 26 de janeiro de 2017 11:34:33 UTC-2, Arthur escreveu:
Bom dia.

Alguém já conseguiu fazer com que ao clicar em qualquer linhas da listview o radio seja marcado/desmarcado? Tenho que implementar Onclicklistener em todos os outros componentes e chamar o do radioButton?

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] RECEBIMENTOS

Faz o seguinte passa na Sebrae para tirar todas as dúvidas em relação ao MEI e ME também.

Jefferson Simão Gonçalves
Analista e Desenvolvedor

(18) 99761-6660


Em 27 de janeiro de 2017 10:43, Klecios Cronemberger <wkacronem@gmail.com> escreveu:
Bom dia Amigos, eu sei que nao é um assunto de programação, mais envolve a etapa final (recebimento dos rendimentos), queria saber amigos, se algum de vcs usa o MEI como recebedor, apesar q tem um limite de 60mil ano (uma media de 5mil/mes) daria, mais minha duvida é qual tipo de ramo no CNAE posso usar...


agradeco...

se preferir em responder no PV pode ser tb...

---~--~----~------~-----~--~----
Klecios Cronemberger
...

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] RECEBIMENTOS

Bom dia Amigos, eu sei que nao é um assunto de programação, mais envolve a etapa final (recebimento dos rendimentos), queria saber amigos, se algum de vcs usa o MEI como recebedor, apesar q tem um limite de 60mil ano (uma media de 5mil/mes) daria, mais minha duvida é qual tipo de ramo no CNAE posso usar...


agradeco...

se preferir em responder no PV pode ser tb...

---~--~----~------~-----~--~----
Klecios Cronemberger
...

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Classe consumir Webservice PHP

Bom dia Arthur,

Recentemente eu utilizei o okhttp, é bem fácil de utilizar.
Ainda preciso dar uma estudada a mais em tratamento de status e tal, mas é bem tranquilo de utilizar.

Em 27 de janeiro de 2017 09:16, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Pessoal, bom dia!

O que devo usar atualmente para escrever uma classe que consumirá meu WS Gson?

Em um projeto antigo usei org.apache.http.*. Porém, isso está me trazendo problemas agora.

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Luiz Gustavo S. Mafra
Bacharel em Ciência da Computação - UESC - Universidade Estadual de Santa Cruz
Analista de Sistemas - Santa Casa de Misericórdia de Itabuna
Desenvolvedor PHP, Android

+55 73 9147 0547
+55 73 8888 7500

twitter: @lgmafra
skype: lgmafra

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Classe consumir Webservice PHP

Pessoal, bom dia!

O que devo usar atualmente para escrever uma classe que consumirá meu WS Gson?

Em um projeto antigo usei org.apache.http.*. Porém, isso está me trazendo problemas agora.

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Não é possível abrir o arquivo

Fala disso https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html?hl=pt-br

Nossa, olha isso (estranho que ele me obriga a usar compileSdkVersion 23 quando uso o http.legacy)...kkkkk: 
A versão Android 6.0 remove a compatibilidade com cliente Apache HTTP.


2017-01-26 16:43 GMT-02:00 Rudson Lima <rudsonlive@gmail.com>:
Você está tratando as permissões para API 23+ em tempo de execução?


Em 26 de jan de 2017 3:40 PM, "Arthur Ruppenthal" <arthur.ruppenthal@gmail.com> escreveu:
Tenho usado API 23. É possível que até mesmo no moto g4 play (Marshmallou 6.0.1) a versão do meu app tenha ficado muito "alta"?

Usei esta API por causa do userLibrary 'org.apache.http.legacy.

Att,

2017-01-25 16:50 GMT-02:00 Arthur Ruppenthal <arthur.ruppenthal@gmail.com>:
Se eu o envio para o google drive e baixo de lá, retorna o erro: 

"Parse error

 There was a problem parsing the package"

2017-01-25 16:44 GMT-02:00 Rudson Lima <rudsonlive@gmail.com>:
@Arthur essa parte do código já é gerado por padrão na criação do projeto e ainda assim vc não está utilizando o proguard!

instalar seu app em um device conectado ao seu pc e com o Android Studio aberto. Pode ser que ele mostre no log o problema pois "can´t open file" é meio vago oO.

Em 25 de janeiro de 2017 15:41, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Mesmo removendo essas cláusulas e gerando um novo release.apk não funcionou.

On Wed, Jan 25, 2017 at 4:31 PM, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> wrote:
Sim, tem essa cláusula (nem sabia que estava usando):

buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

On Wed, Jan 25, 2017 at 4:25 PM, Rudson Lima <rudsonlive@gmail.com> wrote:
Tá usando o proguard? Se tiver é bom da uma revisada nele. 

Em 25 de janeiro de 2017 15:22, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Boa tarde pessoal.

Gerei minha apk signed pelo android studio, mas mesmo no marshmallow (6.1) quando vou tentar instalá-la diz que não é possível abrir o arquivo (can´t open file). Se eu rodo como debug direto do AS funciona normalmente. 

Na versão 5.1 diz que não é possível fazer parser do arquivo.

Alguém já passou por isso?

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Não é possível abrir o arquivo

Você está tratando as permissões para API 23+ em tempo de execução?

Em 26 de jan de 2017 3:40 PM, "Arthur Ruppenthal" <arthur.ruppenthal@gmail.com> escreveu:
Tenho usado API 23. É possível que até mesmo no moto g4 play (Marshmallou 6.0.1) a versão do meu app tenha ficado muito "alta"?

Usei esta API por causa do userLibrary 'org.apache.http.legacy.

Att,

2017-01-25 16:50 GMT-02:00 Arthur Ruppenthal <arthur.ruppenthal@gmail.com>:
Se eu o envio para o google drive e baixo de lá, retorna o erro: 

"Parse error

 There was a problem parsing the package"

2017-01-25 16:44 GMT-02:00 Rudson Lima <rudsonlive@gmail.com>:
@Arthur essa parte do código já é gerado por padrão na criação do projeto e ainda assim vc não está utilizando o proguard!

instalar seu app em um device conectado ao seu pc e com o Android Studio aberto. Pode ser que ele mostre no log o problema pois "can´t open file" é meio vago oO.

Em 25 de janeiro de 2017 15:41, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Mesmo removendo essas cláusulas e gerando um novo release.apk não funcionou.

On Wed, Jan 25, 2017 at 4:31 PM, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> wrote:
Sim, tem essa cláusula (nem sabia que estava usando):

buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

On Wed, Jan 25, 2017 at 4:25 PM, Rudson Lima <rudsonlive@gmail.com> wrote:
Tá usando o proguard? Se tiver é bom da uma revisada nele. 

Em 25 de janeiro de 2017 15:22, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Boa tarde pessoal.

Gerei minha apk signed pelo android studio, mas mesmo no marshmallow (6.1) quando vou tentar instalá-la diz que não é possível abrir o arquivo (can´t open file). Se eu rodo como debug direto do AS funciona normalmente. 

Na versão 5.1 diz que não é possível fazer parser do arquivo.

Alguém já passou por isso?

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Não é possível abrir o arquivo

Tenho usado API 23. É possível que até mesmo no moto g4 play (Marshmallou 6.0.1) a versão do meu app tenha ficado muito "alta"?

Usei esta API por causa do userLibrary 'org.apache.http.legacy.

Att,

2017-01-25 16:50 GMT-02:00 Arthur Ruppenthal <arthur.ruppenthal@gmail.com>:
Se eu o envio para o google drive e baixo de lá, retorna o erro: 

"Parse error

 There was a problem parsing the package"

2017-01-25 16:44 GMT-02:00 Rudson Lima <rudsonlive@gmail.com>:
@Arthur essa parte do código já é gerado por padrão na criação do projeto e ainda assim vc não está utilizando o proguard!

instalar seu app em um device conectado ao seu pc e com o Android Studio aberto. Pode ser que ele mostre no log o problema pois "can´t open file" é meio vago oO.

Em 25 de janeiro de 2017 15:41, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Mesmo removendo essas cláusulas e gerando um novo release.apk não funcionou.

On Wed, Jan 25, 2017 at 4:31 PM, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> wrote:
Sim, tem essa cláusula (nem sabia que estava usando):

buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

On Wed, Jan 25, 2017 at 4:25 PM, Rudson Lima <rudsonlive@gmail.com> wrote:
Tá usando o proguard? Se tiver é bom da uma revisada nele. 

Em 25 de janeiro de 2017 15:22, Arthur Ruppenthal <arthur.ruppenthal@gmail.com> escreveu:
Boa tarde pessoal.

Gerei minha apk signed pelo android studio, mas mesmo no marshmallow (6.1) quando vou tentar instalá-la diz que não é possível abrir o arquivo (can´t open file). Se eu rodo como debug direto do AS funciona normalmente. 

Na versão 5.1 diz que não é possível fazer parser do arquivo.

Alguém já passou por isso?

Agradeço desde já!

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Rudson Lima ( live-O ) Desenvolvedor Android
Contato +55 85 87050560 - Fortaleza-ce
Social facebook | google+ | linkedin

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS