[android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-16 Thread Guillermo Polonsky
If the code if obfuscated I don't see anyone easily reading your code. The 
only things that will remain are literal strings for example, but reverse 
engineering the whole obfuscated code will be hard if not impossible to get 
the logic behind.

El martes, 14 de abril de 2015, 5:18:47 (UTC-3), bo escribió:

 HI All

 please any body help to  restrict  extracting apk .


 Regards
 Vinod


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-16 Thread bjv
On this track, if the idea is to make it hard for the repackagers, you can 
check your package signatures to make sure they were signed with your 
private key and if not, raise an error (and perhaps send yourself an email 
alert). You can do this by embedding your public key in your code and use 
it to verify a signature.

Now if you are worried about reverse engineering so they can steal 
algorithms/ideas, {Dex,Pro}guard are the obvious options. They don't solve 
everything, but a lot of things.

On Wednesday, April 15, 2015 at 9:14:58 AM UTC-5, JackN wrote:

 Use your mind. Generally, these APK repackagers go for the first version. 
 When you deploy your app, have it shut down at a predetermined date. Make 
 sure you put out an update prior to the cut-off date that either disables 
 the shut-down, or furthers the date.
  
 All of the people that got you app from the repackagers, will find the app 
 no longer works. You can advise them to download from official sources at 
 that point.
  


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-16 Thread Kristopher Micinski
Generally someone doesn't really care about the way you wrote your
java code.  Few people have code that actually needs protecting.  If
you're running something you don't want to give out to someone, you
should never be sending the code to them anyway (you should run it via
a service).

Kris


On Thu, Apr 16, 2015 at 9:03 AM, Guillermo Polonsky polons...@gmail.com wrote:
 If the code if obfuscated I don't see anyone easily reading your code. The
 only things that will remain are literal strings for example, but reverse
 engineering the whole obfuscated code will be hard if not impossible to get
 the logic behind.


 El martes, 14 de abril de 2015, 5:18:47 (UTC-3), bo escribió:

 HI All

 please any body help to  restrict  extracting apk .


 Regards
 Vinod

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 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.
 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 post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-15 Thread Oscar Marques
What tools can we use?
Waiting answers.
Em 15/04/2015 06:17, Dmitry prehistoric2...@gmail.com escreveu:

 Frankly speeking, Proguard just minimize code. It's just a matter of
 patience to roll back all changes. I suggest to use more sophisticated
 tools.

 On Tuesday, April 14, 2015 at 11:18:47 AM UTC+3, bo wrote:

 HI All

 please any body help to  restrict  extracting apk .


 Regards
 Vinod

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 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.
 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 post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-15 Thread JackN
Use your mind. Generally, these APK repackagers go for the first version. 
When you deploy your app, have it shut down at a predetermined date. Make 
sure you put out an update prior to the cut-off date that either disables 
the shut-down, or furthers the date.
 
All of the people that got you app from the repackagers, will find the app 
no longer works. You can advise them to download from official sources at 
that point.
 
 

On Wednesday, April 15, 2015 at 5:09:33 AM UTC-7, Oscar Marques wrote:

 What tools can we use? 
 Waiting answers. 
 Em 15/04/2015 06:17, Dmitry prehist...@gmail.com javascript: 
 escreveu:

 Frankly speeking, Proguard just minimize code. It's just a matter of 
 patience to roll back all changes. I suggest to use more sophisticated 
 tools.

 On Tuesday, April 14, 2015 at 11:18:47 AM UTC+3, bo wrote: 

 HI All 

 please any body help to  restrict  extracting apk .


 Regards
 Vinod

 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@googlegroups.com 
 javascript:
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com javascript:
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 --- 
 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 javascript:.
 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 post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-15 Thread Бутенко Владимир
you can open it in Total Commander just in the directory with cd apk need 
to type the name of the file and it will go into it as a folder

вторник, 14 апреля 2015 г., 12:18:47 UTC+4 пользователь bo 
написал:

 HI All

 please any body help to  restrict  extracting apk .


 Regards
 Vinod


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: How to avoid reverse engineering of an APK file?

2015-04-15 Thread Dmitry
Frankly speeking, Proguard just minimize code. It's just a matter of 
patience to roll back all changes. I suggest to use more sophisticated 
tools.

On Tuesday, April 14, 2015 at 11:18:47 AM UTC+3, bo wrote:

 HI All

 please any body help to  restrict  extracting apk .


 Regards
 Vinod


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/d/optout.